Blame view

app/src/main/AndroidManifest.xml 2.77 KB
c507bd179   赵康   add ignore file
1
2
3
4
5
6
7
8
9
10
  <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
            package="com.gump.passport.demo">
  
      <uses-permission android:name="android.permission.INTERNET"/>
      <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  
      <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. -->
      <uses-permission android:name="com.android.vending.BILLING"/>
f905cc410   赵康   SDK has update to...
11

c507bd179   赵康   add ignore file
12
      <application
f905cc410   赵康   SDK has update to...
13
          android:name=".GameApplication"
c507bd179   赵康   add ignore file
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
          android:allowBackup="true"
          android:icon="@mipmap/ic_launcher"
          android:label="@string/app_name"
          android:roundIcon="@mipmap/ic_launcher_round"
          android:supportsRtl="true"
          android:theme="@style/AppTheme">
          <meta-data
              android:name="com.google.android.gms.games.APP_ID"
              android:value="@string/app_id"/>
          <meta-data
              android:name="com.google.android.gms.version"
              android:value="@integer/google_play_services_version"/>
  
          <activity android:name=".MainActivity">
              <intent-filter>
                  <action android:name="android.intent.action.MAIN"/>
  
                  <category android:name="android.intent.category.LAUNCHER"/>
              </intent-filter>
          </activity>
c507bd179   赵康   add ignore file
34
35
36
          <activity
              android:name="com.gump.payment.PaymentActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
f905cc410   赵康   SDK has update to...
37
              android:screenOrientation="behind"
c507bd179   赵康   add ignore file
38
              android:launchMode="singleTask"
f905cc410   赵康   SDK has update to...
39
              android:theme="@style/Theme.Translucent">
c507bd179   赵康   add ignore file
40
              <intent-filter>
c507bd179   赵康   add ignore file
41
                  <action android:name="android.intent.action.VIEW"/>
f905cc410   赵康   SDK has update to...
42
                  <category android:name="android.intent.category.DEFAULT"/>
c507bd179   赵康   add ignore file
43
44
45
46
47
48
49
                  <category android:name="android.intent.category.BROWSABLE"/>
  
                  <data
                      android:host="com.gump.sdk"
                      android:scheme="gump100"/>
              </intent-filter>
          </activity>
f905cc410   赵康   SDK has update to...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
          <activity
              android:name="com.gump.gpassport.GumpLoginActivity"
              android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout"
              android:launchMode="singleTask"
              android:screenOrientation="behind"
              android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>
          <activity
              android:name=".SettingsActivity"
              android:label="@string/title_activity_settings"
              android:parentActivityName=".MainActivity">
              <meta-data
                  android:name="android.support.PARENT_ACTIVITY"
                  android:value="com.gump.passport.demo.MainActivity"/>
          </activity>
c507bd179   赵康   add ignore file
64
65
66
      </application>
  
  </manifest>