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