Blame view

GameSDKDemo/src/main/AndroidManifest.xml 2.68 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"
6a217e5ca   赵康   version4.5.0
7
          android:targetSdkVersion="23"/>
d6bc71fcb   赵康   add the project o...
8

2ce00205d   赵康   v4.2.1:clear for ...
9
      <uses-permission android:name="android.permission.INTERNET"/>
2ce00205d   赵康   v4.2.1:clear for ...
10
      <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
2ce00205d   赵康   v4.2.1:clear for ...
11
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
064eb2054   赵康   分离iap支付方法
12
      <!-- Danger Level permission-->
d6bc71fcb   赵康   add the project o...
13
14
  
      <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. -->
2ce00205d   赵康   v4.2.1:clear for ...
15
      <uses-permission android:name="com.android.vending.BILLING"/>
d6bc71fcb   赵康   add the project o...
16
17
18
19
  
      <application
          android:allowBackup="true"
          android:icon="@drawable/ic_launcher"
2ce00205d   赵康   v4.2.1:clear for ...
20
          android:label="@string/app_name">
d6bc71fcb   赵康   add the project o...
21
22
23
24
          <activity
              android:name="com.gumptech.sdk.demo.MainActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
              android:label="@string/app_name"
472513368   赵康   取消游客绑定提醒
25
              android:screenOrientation="landscape">
d6bc71fcb   赵康   add the project o...
26
              <intent-filter>
2ce00205d   赵康   v4.2.1:clear for ...
27
                  <action android:name="android.intent.action.MAIN"/>
d6bc71fcb   赵康   add the project o...
28

2ce00205d   赵康   v4.2.1:clear for ...
29
                  <category android:name="android.intent.category.LAUNCHER"/>
d6bc71fcb   赵康   add the project o...
30
31
32
33
34
              </intent-filter>
          </activity>
          <activity
              android:name="com.gumptech.sdk.ContainerActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
d6bc71fcb   赵康   add the project o...
35
              android:launchMode="singleTask"
2ce00205d   赵康   v4.2.1:clear for ...
36
37
              android:theme="@style/Theme.TransparentWin"
              android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
d6bc71fcb   赵康   add the project o...
38
39
40
41
          </activity>
          <activity
              android:name="com.gumptech.sdk.PaymentActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
472513368   赵康   取消游客绑定提醒
42
43
              android:launchMode="singleTask"
              android:theme="@android:style/Theme.Light.NoTitleBar">
d6bc71fcb   赵康   add the project o...
44
              <intent-filter>
2ce00205d   赵康   v4.2.1:clear for ...
45
                  <category android:name="android.intent.category.DEFAULT"/>
d6bc71fcb   赵康   add the project o...
46

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

2ce00205d   赵康   v4.2.1:clear for ...
49
                  <category android:name="android.intent.category.BROWSABLE"/>
d6bc71fcb   赵康   add the project o...
50
51
52
  
                  <data
                      android:host="com.gump.sdk"
2ce00205d   赵康   v4.2.1:clear for ...
53
                      android:scheme="gump10031"/>
d6bc71fcb   赵康   add the project o...
54
55
              </intent-filter>
          </activity>
d6bc71fcb   赵康   add the project o...
56

188bc4cf8   赵康   v4.3.3:增加微信登录
57
          <!--wechat-->
d6bc71fcb   赵康   add the project o...
58
          <!-- vk -->
0ea573a86   赵康   update bluePay co...
59
          <!--         <activity android:name="com.vk.com.gumptech.sdk.VKOpenAuthActivity" /> -->
d6bc71fcb   赵康   add the project o...
60
          <!--         <activity -->
0ea573a86   赵康   update bluePay co...
61
          <!--             android:name="com.vk.com.gumptech.sdk.VKServiceActivity" -->
d6bc71fcb   赵康   add the project o...
62
63
64
65
66
67
          <!--             android:label="ServiceActivity" -->
          <!--             android:theme="@style/VK.Transparent" /> -->
      </application>
  
  
  </manifest>