Blame view
GameSDKDemo/src/main/AndroidManifest.xml
2.21 KB
d6bc71fcb
![]() |
1 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2ce00205d
![]() |
2 |
package="com.gumptech.sdk.demo"> |
d6bc71fcb
![]() |
3 |
|
2ce00205d
![]() |
4 |
<uses-permission android:name="android.permission.INTERNET"/> |
2ce00205d
![]() |
5 |
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> |
2ce00205d
![]() |
6 |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
064eb2054
![]() |
7 |
<!-- Danger Level permission--> |
d6bc71fcb
![]() |
8 9 |
<!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. --> |
2ce00205d
![]() |
10 |
<uses-permission android:name="com.android.vending.BILLING"/> |
d6bc71fcb
![]() |
11 12 13 14 |
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" |
2ce00205d
![]() |
15 |
android:label="@string/app_name"> |
d6bc71fcb
![]() |
16 17 18 19 |
<activity android:name="com.gumptech.sdk.demo.MainActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" android:label="@string/app_name" |
472513368
![]() |
20 |
android:screenOrientation="landscape"> |
d6bc71fcb
![]() |
21 |
<intent-filter> |
2ce00205d
![]() |
22 |
<action android:name="android.intent.action.MAIN"/> |
d6bc71fcb
![]() |
23 |
|
2ce00205d
![]() |
24 |
<category android:name="android.intent.category.LAUNCHER"/> |
d6bc71fcb
![]() |
25 26 27 28 29 |
</intent-filter> </activity> <activity android:name="com.gumptech.sdk.ContainerActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
d6bc71fcb
![]() |
30 |
android:launchMode="singleTask" |
2ce00205d
![]() |
31 32 |
android:theme="@style/Theme.TransparentWin" android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> |
d6bc71fcb
![]() |
33 34 35 36 |
</activity> <activity android:name="com.gumptech.sdk.PaymentActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
472513368
![]() |
37 38 |
android:launchMode="singleTask" android:theme="@android:style/Theme.Light.NoTitleBar"> |
d6bc71fcb
![]() |
39 |
<intent-filter> |
2ce00205d
![]() |
40 |
<category android:name="android.intent.category.DEFAULT"/> |
d6bc71fcb
![]() |
41 |
|
2ce00205d
![]() |
42 |
<action android:name="android.intent.action.VIEW"/> |
d6bc71fcb
![]() |
43 |
|
2ce00205d
![]() |
44 |
<category android:name="android.intent.category.BROWSABLE"/> |
d6bc71fcb
![]() |
45 46 47 |
<data android:host="com.gump.sdk" |
f97711df6
![]() |
48 |
android:scheme="gump100"/> |
d6bc71fcb
![]() |
49 50 |
</intent-filter> </activity> |
d6bc71fcb
![]() |
51 |
|
d6bc71fcb
![]() |
52 53 54 55 |
</application> </manifest> |