Blame view

GameSDKDemo/src/main/AndroidManifest.xml 2.44 KB
d6bc71fcb   赵康   add the project o...
1
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
e877dd7d0   赵康   重构版本4.8.0\
2
            package="com.gump.game.sdk.demo">
d6bc71fcb   赵康   add the project o...
3

2ce00205d   赵康   v4.2.1:clear for ...
4
      <uses-permission android:name="android.permission.INTERNET"/>
2ce00205d   赵康   v4.2.1:clear for ...
5
      <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
2ce00205d   赵康   v4.2.1:clear for ...
6
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
064eb2054   赵康   分离iap支付方法
7
      <!-- Danger Level permission-->
d6bc71fcb   赵康   add the project o...
8
9
  
      <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. -->
2ce00205d   赵康   v4.2.1:clear for ...
10
      <uses-permission android:name="com.android.vending.BILLING"/>
4a6edc661   赵康   SDK v4.7.0:增加支付弹窗...
11
12
      <!--samgung iap need this permission-->
      <uses-permission android:name="com.samsung.android.iap.permission.BILLING"/>
d6bc71fcb   赵康   add the project o...
13
14
15
16
  
      <application
          android:allowBackup="true"
          android:icon="@drawable/ic_launcher"
2ce00205d   赵康   v4.2.1:clear for ...
17
          android:label="@string/app_name">
d6bc71fcb   赵康   add the project o...
18
          <activity
e877dd7d0   赵康   重构版本4.8.0\
19
              android:name="com.gump.game.sdk.demo.MainActivity"
d6bc71fcb   赵康   add the project o...
20
21
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
              android:label="@string/app_name"
4a6edc661   赵康   SDK v4.7.0:增加支付弹窗...
22
              android:theme="@style/Theme.AppCompat.Light.NoActionBar"
baa539183   kingzh   upgrade to 4.9.0
23
              >
d6bc71fcb   赵康   add the project o...
24
              <intent-filter>
2ce00205d   赵康   v4.2.1:clear for ...
25
                  <action android:name="android.intent.action.MAIN"/>
d6bc71fcb   赵康   add the project o...
26

2ce00205d   赵康   v4.2.1:clear for ...
27
                  <category android:name="android.intent.category.LAUNCHER"/>
d6bc71fcb   赵康   add the project o...
28
29
              </intent-filter>
          </activity>
baa539183   kingzh   upgrade to 4.9.0
30

d4c3b9dce   赵康   v4.7.6
31
          <activity
e877dd7d0   赵康   重构版本4.8.0\
32
              android:name="com.gump.game.sdk.PassportActivity"
d4c3b9dce   赵康   v4.7.6
33
34
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
              android:launchMode="singleTask"
baa539183   kingzh   upgrade to 4.9.0
35
              android:theme="@style/Theme.Origin"
d4c3b9dce   赵康   v4.7.6
36
37
38
              android:screenOrientation="behind"
              android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
          </activity>
d6bc71fcb   赵康   add the project o...
39
          <activity
e877dd7d0   赵康   重构版本4.8.0\
40
              android:name="com.gump.game.sdk.RechargeActivity"
d6bc71fcb   赵康   add the project o...
41
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
472513368   赵康   取消游客绑定提醒
42
              android:launchMode="singleTask"
4a6edc661   赵康   SDK v4.7.0:增加支付弹窗...
43
44
              android:screenOrientation="behind"
              android:theme="@style/Theme.Translucent">
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"
f97711df6   赵康   the demo for sdk ...
54
                      android:scheme="gump100"/>
d6bc71fcb   赵康   add the project o...
55
56
              </intent-filter>
          </activity>
d6bc71fcb   赵康   add the project o...
57

d6bc71fcb   赵康   add the project o...
58
59
60
61
      </application>
  
  
  </manifest>