Commit d4c3b9dce6cfcf46994c16c0c2987d87f323f606
1 parent
1a7b481630
Exists in
master
v4.7.6
Showing 3 changed files with 20 additions and 6 deletions Side-by-side Diff
GameSDKDemo/build.gradle
... | ... | @@ -91,6 +91,6 @@ dependencies { |
91 | 91 | implementation 'com.android.support:design:27.1.1' |
92 | 92 | // implementation project(':GameSDK') |
93 | 93 | // implementation project(':IAP5Helper') |
94 | - implementation 'com.gumptech.sdk:GameSDK:4.7.5_orange' | |
94 | + implementation 'com.gumptech.sdk:GameSDK:4.7.6' | |
95 | 95 | // implementation 'com.gumptech.sdk:SamsungIAP:5.1.1' |
96 | 96 | } |
GameSDKDemo/src/main/AndroidManifest.xml
... | ... | @@ -28,7 +28,14 @@ |
28 | 28 | <category android:name="android.intent.category.LAUNCHER"/> |
29 | 29 | </intent-filter> |
30 | 30 | </activity> |
31 | - | |
31 | + <activity | |
32 | + android:name="com.gumptech.sdk.ContainerActivity" | |
33 | + android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" | |
34 | + android:launchMode="singleTask" | |
35 | + android:theme="@style/Theme.Orange" | |
36 | + android:screenOrientation="behind" | |
37 | + android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> | |
38 | + </activity> | |
32 | 39 | <activity |
33 | 40 | android:name="com.gumptech.sdk.PaymentActivity" |
34 | 41 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
README.md
1 | 1 | # Gump SDK 4 for Android接入文档 |
2 | 2 | |
3 | 3 | |
4 | -V4.7.5_orange | |
5 | -2019年07月12日 | |
4 | +V4.7.6 | |
5 | +2019年07月25日 | |
6 | 6 | |
7 | 7 | |
8 | 8 | ## 版本概述 |
... | ... | @@ -21,7 +21,7 @@ V4.7.5_orange |
21 | 21 | } |
22 | 22 | } |
23 | 23 | dependencies { |
24 | - implementation 'com.gumptech.sdk:GameSDK:4.7.5_orange' | |
24 | + implementation 'com.gumptech.sdk:GameSDK:4.7.6' | |
25 | 25 | |
26 | 26 | } |
27 | 27 | |
... | ... | @@ -37,7 +37,14 @@ V4.7.5_orange |
37 | 37 | |
38 | 38 | 其次注册相应的Activity,具体如下: |
39 | 39 | |
40 | - | |
40 | + <activity | |
41 | + android:name="com.gumptech.sdk.ContainerActivity" | |
42 | + android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" | |
43 | + android:launchMode="singleTask" | |
44 | + android:theme="@style/Theme.Origin" //登录界面的主题,可选项:Theme.Origin\Theme.Orange\Theme.Blue | |
45 | + android:screenOrientation="behind" | |
46 | + android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> | |
47 | + </activity> | |
41 | 48 | <activity |
42 | 49 | android:name="com.gumptech.sdk.PaymentActivity" |
43 | 50 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |