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