-
Notifications
You must be signed in to change notification settings - Fork 53
/
AndroidManifest.xml
29 lines (24 loc) · 1.1 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2013 Square, Inc. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.squareup.shipfaster"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17"/>
<!-- This is required for Picasso to work. -->
<uses-permission android:name="android.permission.INTERNET"/>
<!-- OPTIONAL Used to adjust the work load depending on the type of network the device is using. -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application android:label="@string/app_name" android:name=".common.ShipFasterApplication"
android:icon="@drawable/ic_launcher"
>
<activity android:name=".cart.CartActivity"
android:label="Cart">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".payment.PaymentActivity" android:label="Auth"/>
</application>
</manifest>