Blame view
GameSDKDemo/src/main/AndroidManifest.xml
3.45 KB
d6bc71fcb
![]() |
1 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2ce00205d
![]() |
2 |
package="com.gumptech.sdk.demo"> |
d6bc71fcb
![]() |
3 4 5 6 |
<uses-sdk android:minSdkVersion="9" |
2ce00205d
![]() |
7 |
android:targetSdkVersion="20"/> |
d6bc71fcb
![]() |
8 |
|
2ce00205d
![]() |
9 10 11 12 13 14 |
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.BLUETOOTH"/> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> <uses-permission android:name="android.permission.WRITE_SETTINGS"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> |
064eb2054
![]() |
15 |
<!-- Danger Level permission--> |
2ce00205d
![]() |
16 17 18 |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.GET_ACCOUNTS"/> <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
d6bc71fcb
![]() |
19 20 21 |
<uses-permission android:name="android.permission.SEND_SMS"/> <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. --> |
2ce00205d
![]() |
22 |
<uses-permission android:name="com.android.vending.BILLING"/> |
d6bc71fcb
![]() |
23 24 25 26 |
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" |
064eb2054
![]() |
27 |
|
2ce00205d
![]() |
28 |
android:label="@string/app_name"> |
d6bc71fcb
![]() |
29 30 31 32 |
<activity android:name="com.gumptech.sdk.demo.MainActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" android:label="@string/app_name" |
2ce00205d
![]() |
33 |
> |
d6bc71fcb
![]() |
34 |
<intent-filter> |
2ce00205d
![]() |
35 |
<action android:name="android.intent.action.MAIN"/> |
d6bc71fcb
![]() |
36 |
|
2ce00205d
![]() |
37 |
<category android:name="android.intent.category.LAUNCHER"/> |
d6bc71fcb
![]() |
38 39 40 41 42 |
</intent-filter> </activity> <activity android:name="com.gumptech.sdk.ContainerActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
d6bc71fcb
![]() |
43 |
android:launchMode="singleTask" |
2ce00205d
![]() |
44 45 |
android:theme="@style/Theme.TransparentWin" android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> |
d6bc71fcb
![]() |
46 47 48 49 50 |
</activity> <activity android:name="com.gumptech.sdk.PaymentActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" android:launchMode="singleTask" |
2ce00205d
![]() |
51 |
android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
d6bc71fcb
![]() |
52 |
<intent-filter> |
2ce00205d
![]() |
53 |
<category android:name="android.intent.category.DEFAULT"/> |
d6bc71fcb
![]() |
54 |
|
2ce00205d
![]() |
55 |
<action android:name="android.intent.action.VIEW"/> |
d6bc71fcb
![]() |
56 |
|
2ce00205d
![]() |
57 |
<category android:name="android.intent.category.BROWSABLE"/> |
d6bc71fcb
![]() |
58 59 60 |
<data android:host="com.gump.sdk" |
2ce00205d
![]() |
61 |
android:scheme="gump10031"/> |
d6bc71fcb
![]() |
62 63 64 65 66 |
</intent-filter> </activity> <activity android:name="com.gumptech.sdk.ExchangeWindow" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
2ce00205d
![]() |
67 |
android:theme="@style/Theme.WinForExchange"> |
d6bc71fcb
![]() |
68 |
</activity> |
2ce00205d
![]() |
69 |
<service android:name="com.gumptech.sdk.PushService"> |
d6bc71fcb
![]() |
70 71 72 |
</service> <!-- vk --> |
0ea573a86
![]() |
73 |
<!-- <activity android:name="com.vk.com.gumptech.sdk.VKOpenAuthActivity" /> --> |
d6bc71fcb
![]() |
74 |
<!-- <activity --> |
0ea573a86
![]() |
75 |
<!-- android:name="com.vk.com.gumptech.sdk.VKServiceActivity" --> |
d6bc71fcb
![]() |
76 77 78 79 80 81 |
<!-- android:label="ServiceActivity" --> <!-- android:theme="@style/VK.Transparent" /> --> </application> </manifest> |