Blame view
GameSDKDemo/src/main/AndroidManifest.xml
3.64 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" |
43932caac
![]() |
33 |
android:screenOrientation="landscape" |
2ce00205d
![]() |
34 |
> |
d6bc71fcb
![]() |
35 |
<intent-filter> |
2ce00205d
![]() |
36 |
<action android:name="android.intent.action.MAIN"/> |
d6bc71fcb
![]() |
37 |
|
2ce00205d
![]() |
38 |
<category android:name="android.intent.category.LAUNCHER"/> |
d6bc71fcb
![]() |
39 40 41 42 43 |
</intent-filter> </activity> <activity android:name="com.gumptech.sdk.ContainerActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
d6bc71fcb
![]() |
44 |
android:launchMode="singleTask" |
2ce00205d
![]() |
45 46 |
android:theme="@style/Theme.TransparentWin" android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> |
d6bc71fcb
![]() |
47 48 49 50 51 |
</activity> <activity android:name="com.gumptech.sdk.PaymentActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" android:launchMode="singleTask" |
2ce00205d
![]() |
52 |
android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
d6bc71fcb
![]() |
53 |
<intent-filter> |
2ce00205d
![]() |
54 |
<category android:name="android.intent.category.DEFAULT"/> |
d6bc71fcb
![]() |
55 |
|
2ce00205d
![]() |
56 |
<action android:name="android.intent.action.VIEW"/> |
d6bc71fcb
![]() |
57 |
|
2ce00205d
![]() |
58 |
<category android:name="android.intent.category.BROWSABLE"/> |
d6bc71fcb
![]() |
59 60 61 |
<data android:host="com.gump.sdk" |
2ce00205d
![]() |
62 |
android:scheme="gump10031"/> |
d6bc71fcb
![]() |
63 64 65 66 67 |
</intent-filter> </activity> <activity android:name="com.gumptech.sdk.ExchangeWindow" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
2ce00205d
![]() |
68 |
android:theme="@style/Theme.WinForExchange"> |
d6bc71fcb
![]() |
69 |
</activity> |
2ce00205d
![]() |
70 |
<service android:name="com.gumptech.sdk.PushService"> |
d6bc71fcb
![]() |
71 |
</service> |
188bc4cf8
![]() |
72 73 74 75 |
<!--wechat--> <activity android:name=".wxapi.WXEntryActivity" android:exported="true"></activity> |
d6bc71fcb
![]() |
76 |
<!-- vk --> |
0ea573a86
![]() |
77 |
<!-- <activity android:name="com.vk.com.gumptech.sdk.VKOpenAuthActivity" /> --> |
d6bc71fcb
![]() |
78 |
<!-- <activity --> |
0ea573a86
![]() |
79 |
<!-- android:name="com.vk.com.gumptech.sdk.VKServiceActivity" --> |
d6bc71fcb
![]() |
80 81 82 83 84 85 |
<!-- android:label="ServiceActivity" --> <!-- android:theme="@style/VK.Transparent" /> --> </application> </manifest> |