Blame view

GameSDKDemo/src/main/AndroidManifest.xml 3.64 KB
d6bc71fcb   赵康   add the project o...
1
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2ce00205d   赵康   v4.2.1:clear for ...
2
            package="com.gumptech.sdk.demo">
d6bc71fcb   赵康   add the project o...
3
4
5
6
  
  
      <uses-sdk
          android:minSdkVersion="9"
2ce00205d   赵康   v4.2.1:clear for ...
7
          android:targetSdkVersion="20"/>
d6bc71fcb   赵康   add the project o...
8

2ce00205d   赵康   v4.2.1:clear for ...
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   赵康   分离iap支付方法
15
      <!-- Danger Level permission-->
2ce00205d   赵康   v4.2.1:clear for ...
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   赵康   add the project o...
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   赵康   v4.2.1:clear for ...
22
      <uses-permission android:name="com.android.vending.BILLING"/>
d6bc71fcb   赵康   add the project o...
23
24
25
26
  
      <application
          android:allowBackup="true"
          android:icon="@drawable/ic_launcher"
064eb2054   赵康   分离iap支付方法
27

2ce00205d   赵康   v4.2.1:clear for ...
28
          android:label="@string/app_name">
d6bc71fcb   赵康   add the project o...
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   赵康   update for UI,add...
33
              android:screenOrientation="landscape"
2ce00205d   赵康   v4.2.1:clear for ...
34
              >
d6bc71fcb   赵康   add the project o...
35
              <intent-filter>
2ce00205d   赵康   v4.2.1:clear for ...
36
                  <action android:name="android.intent.action.MAIN"/>
d6bc71fcb   赵康   add the project o...
37

2ce00205d   赵康   v4.2.1:clear for ...
38
                  <category android:name="android.intent.category.LAUNCHER"/>
d6bc71fcb   赵康   add the project o...
39
40
41
42
43
              </intent-filter>
          </activity>
          <activity
              android:name="com.gumptech.sdk.ContainerActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
d6bc71fcb   赵康   add the project o...
44
              android:launchMode="singleTask"
2ce00205d   赵康   v4.2.1:clear for ...
45
46
              android:theme="@style/Theme.TransparentWin"
              android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
d6bc71fcb   赵康   add the project o...
47
48
49
50
51
          </activity>
          <activity
              android:name="com.gumptech.sdk.PaymentActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
              android:launchMode="singleTask"
2ce00205d   赵康   v4.2.1:clear for ...
52
              android:theme="@android:style/Theme.Translucent.NoTitleBar">
d6bc71fcb   赵康   add the project o...
53
              <intent-filter>
2ce00205d   赵康   v4.2.1:clear for ...
54
                  <category android:name="android.intent.category.DEFAULT"/>
d6bc71fcb   赵康   add the project o...
55

2ce00205d   赵康   v4.2.1:clear for ...
56
                  <action android:name="android.intent.action.VIEW"/>
d6bc71fcb   赵康   add the project o...
57

2ce00205d   赵康   v4.2.1:clear for ...
58
                  <category android:name="android.intent.category.BROWSABLE"/>
d6bc71fcb   赵康   add the project o...
59
60
61
  
                  <data
                      android:host="com.gump.sdk"
2ce00205d   赵康   v4.2.1:clear for ...
62
                      android:scheme="gump10031"/>
d6bc71fcb   赵康   add the project o...
63
64
65
66
67
              </intent-filter>
          </activity>
          <activity
              android:name="com.gumptech.sdk.ExchangeWindow"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
2ce00205d   赵康   v4.2.1:clear for ...
68
              android:theme="@style/Theme.WinForExchange">
d6bc71fcb   赵康   add the project o...
69
          </activity>
2ce00205d   赵康   v4.2.1:clear for ...
70
          <service android:name="com.gumptech.sdk.PushService">
d6bc71fcb   赵康   add the project o...
71
          </service>
188bc4cf8   赵康   v4.3.3:增加微信登录
72
73
74
75
          <!--wechat-->
          <activity
              android:name=".wxapi.WXEntryActivity"
              android:exported="true"></activity>
d6bc71fcb   赵康   add the project o...
76
          <!-- vk -->
0ea573a86   赵康   update bluePay co...
77
          <!--         <activity android:name="com.vk.com.gumptech.sdk.VKOpenAuthActivity" /> -->
d6bc71fcb   赵康   add the project o...
78
          <!--         <activity -->
0ea573a86   赵康   update bluePay co...
79
          <!--             android:name="com.vk.com.gumptech.sdk.VKServiceActivity" -->
d6bc71fcb   赵康   add the project o...
80
81
82
83
84
85
          <!--             android:label="ServiceActivity" -->
          <!--             android:theme="@style/VK.Transparent" /> -->
      </application>
  
  
  </manifest>