Blame view

GameSDKDemo/src/main/AndroidManifest.xml 3.19 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-->
2ce00205d   赵康   v4.2.1:clear for ...
13
      <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
d6bc71fcb   赵康   add the project o...
14
15
  
      <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. -->
2ce00205d   赵康   v4.2.1:clear for ...
16
      <uses-permission android:name="com.android.vending.BILLING"/>
d6bc71fcb   赵康   add the project o...
17
18
19
20
  
      <application
          android:allowBackup="true"
          android:icon="@drawable/ic_launcher"
2ce00205d   赵康   v4.2.1:clear for ...
21
          android:label="@string/app_name">
d6bc71fcb   赵康   add the project o...
22
23
24
25
          <activity
              android:name="com.gumptech.sdk.demo.MainActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
              android:label="@string/app_name"
472513368   赵康   取消游客绑定提醒
26
              android:screenOrientation="landscape">
d6bc71fcb   赵康   add the project o...
27
              <intent-filter>
2ce00205d   赵康   v4.2.1:clear for ...
28
                  <action android:name="android.intent.action.MAIN"/>
d6bc71fcb   赵康   add the project o...
29

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

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

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