Blame view

GameSDKDemo/src/main/AndroidManifest.xml 3.28 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
      <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
14
      <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
      <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
d6bc71fcb   赵康   add the project o...
15
16
  
      <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. -->
2ce00205d   赵康   v4.2.1:clear for ...
17
      <uses-permission android:name="com.android.vending.BILLING"/>
d6bc71fcb   赵康   add the project o...
18
19
20
21
  
      <application
          android:allowBackup="true"
          android:icon="@drawable/ic_launcher"
2ce00205d   赵康   v4.2.1:clear for ...
22
          android:label="@string/app_name">
d6bc71fcb   赵康   add the project o...
23
24
25
26
          <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...
27
              android:screenOrientation="landscape"
2ce00205d   赵康   v4.2.1:clear for ...
28
              >
d6bc71fcb   赵康   add the project o...
29
              <intent-filter>
2ce00205d   赵康   v4.2.1:clear for ...
30
                  <action android:name="android.intent.action.MAIN"/>
d6bc71fcb   赵康   add the project o...
31

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

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

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