Blame view
android/GameSDKSample/AndroidManifest.xml
3.77 KB
7bb951594
![]() |
1 2 |
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
4c1c42af5
![]() |
3 |
package="com.gumpsdk.wuruid" |
09d4c173f
![]() |
4 |
android:versionCode="6" |
6519aa98c
![]() |
5 |
android:versionName="1.6" > |
7bb951594
![]() |
6 7 |
<uses-sdk |
51314e2bf
![]() |
8 9 |
android:minSdkVersion="9" android:targetSdkVersion="22" /> |
7bb951594
![]() |
10 11 12 13 14 15 16 17 |
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <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.GET_ACCOUNTS" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
3b0b01ef6
![]() |
18 19 |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
6519aa98c
![]() |
20 |
<uses-permission android:name="android.permission.SEND_SMS"/> |
3b0b01ef6
![]() |
21 |
|
7bb951594
![]() |
22 23 24 25 26 27 |
<!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. --> <uses-permission android:name="com.android.vending.BILLING" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" |
6519aa98c
![]() |
28 |
android:label="@string/app_name" > |
7bb951594
![]() |
29 30 |
<activity android:name="com.gumptech.loginsdk.sample.MainActivity" |
c04253501
![]() |
31 |
android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
7bb951594
![]() |
32 |
android:label="@string/app_name" |
7a00ee278
![]() |
33 |
android:screenOrientation="landscape" > |
7bb951594
![]() |
34 35 36 37 38 39 40 41 |
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="com.gumptech.sdk.ContainerActivity" |
c04253501
![]() |
42 |
android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
4c1c42af5
![]() |
43 44 |
android:windowSoftInputMode="stateAlwaysHidden|adjustPan" android:theme="@style/Theme.TransparentWin" > |
6519aa98c
![]() |
45 |
</activity> |
7bb951594
![]() |
46 |
<activity |
7bb951594
![]() |
47 |
android:name="com.gumptech.sdk.PaymentActivity" |
c04253501
![]() |
48 |
android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
36ff92ea0
![]() |
49 |
android:launchMode="singleTask" |
6519aa98c
![]() |
50 |
android:theme="@android:style/Theme.Translucent.NoTitleBar" > |
f633382ee
![]() |
51 52 53 54 55 56 57 58 59 |
<intent-filter> <category android:name="android.intent.category.DEFAULT" /> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="com.gump.sdk" |
36ff92ea0
![]() |
60 |
android:scheme="gump10031" /> |
f633382ee
![]() |
61 |
</intent-filter> |
6519aa98c
![]() |
62 |
</activity> |
7bb951594
![]() |
63 64 |
<activity android:name="com.gumptech.sdk.ExchangeWindow" |
c04253501
![]() |
65 |
android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
4c1c42af5
![]() |
66 |
android:theme="@style/Theme.WinForExchange" > |
6519aa98c
![]() |
67 |
</activity> |
dfd38d926
![]() |
68 |
|
6519aa98c
![]() |
69 70 |
<service android:name="com.gumptech.sdk.PushService" > </service> |
51314e2bf
![]() |
71 |
|
6519aa98c
![]() |
72 |
<!-- facebook --> |
51314e2bf
![]() |
73 74 75 76 77 |
<activity android:name="com.facebook.FacebookActivity" android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar" /> |
4c1c42af5
![]() |
78 |
<!-- vk --> |
af9c440cf
![]() |
79 80 81 82 83 |
<!-- <activity android:name="com.vk.sdk.VKOpenAuthActivity" /> --> <!-- <activity --> <!-- android:name="com.vk.sdk.VKServiceActivity" --> <!-- android:label="ServiceActivity" --> <!-- android:theme="@style/VK.Transparent" /> --> |
7bb951594
![]() |
84 85 86 |
</application> </manifest> |