Commit 2ce00205d6b8e31cb89cf94f4ab0785c5cb4f4b9
1 parent
7aeb33662f
Exists in
master
v4.2.1:clear for bluePay
Showing 6 changed files with 26 additions and 26 deletions Inline Diff
GameSDK-release4.2.0.aar
No preview for this file type
GameSDK-release4.2.1.aar
No preview for this file type
GameSDKDemo/build.gradle
| 1 | apply plugin: 'com.android.application' | 1 | apply plugin: 'com.android.application' |
| 2 | 2 | ||
| 3 | repositories{ | 3 | repositories{ |
| 4 | flatDir{ | 4 | flatDir{ |
| 5 | dirs 'libs' | 5 | dirs 'libs' |
| 6 | } | 6 | } |
| 7 | } | 7 | } |
| 8 | 8 | ||
| 9 | android { | 9 | android { |
| 10 | compileSdkVersion 22 | 10 | compileSdkVersion 22 |
| 11 | buildToolsVersion "25.0.0" | 11 | buildToolsVersion "25.0.0" |
| 12 | 12 | ||
| 13 | defaultConfig { | 13 | defaultConfig { |
| 14 | minSdkVersion 9 | 14 | minSdkVersion 9 |
| 15 | targetSdkVersion 22 | 15 | targetSdkVersion 22 |
| 16 | versionCode 5 | 16 | versionCode 5 |
| 17 | versionName "1.3" | 17 | versionName "1.3" |
| 18 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | 18 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
| 19 | } | 19 | } |
| 20 | 20 | ||
| 21 | buildTypes { | 21 | buildTypes { |
| 22 | release { | 22 | release { |
| 23 | minifyEnabled false | 23 | minifyEnabled false |
| 24 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | 24 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| 25 | } | 25 | } |
| 26 | } | 26 | } |
| 27 | lintOptions{ | 27 | lintOptions{ |
| 28 | abortOnError false | 28 | abortOnError false |
| 29 | } | 29 | } |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | dependencies { | 32 | dependencies { |
| 33 | compile fileTree(dir: 'libs', include: ['*.jar']) | 33 | compile fileTree(dir: 'libs', include: ['*.jar']) |
| 34 | testCompile 'junit:junit:4.12' | 34 | testCompile 'junit:junit:4.12' |
| 35 | compile 'com.android.support:appcompat-v7:22.2.0' | 35 | compile 'com.android.support:appcompat-v7:22.2.0' |
| 36 | // compile project(':GameSDK') | 36 | // compile project(':GameSDK') |
| 37 | compile(name:'GameSDK-release4.2.0',ext:'aar') | 37 | compile(name:'GameSDK-release4.2.1',ext:'aar') |
| 38 | 38 | ||
| 39 | } | 39 | } |
| 40 | 40 |
GameSDKDemo/libs/GameSDK-release4.2.0.aar
No preview for this file type
GameSDKDemo/libs/GameSDK-release4.2.1.aar
No preview for this file type
GameSDKDemo/src/main/AndroidManifest.xml
| 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.gumptech.sdk.demo"> | 2 | package="com.gumptech.sdk.demo"> |
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | <uses-sdk | 5 | <uses-sdk |
| 6 | android:minSdkVersion="9" | 6 | android:minSdkVersion="9" |
| 7 | android:targetSdkVersion="20" /> | 7 | android:targetSdkVersion="20"/> |
| 8 | 8 | ||
| 9 | <uses-permission android:name="android.permission.INTERNET" /> | 9 | <uses-permission android:name="android.permission.INTERNET"/> |
| 10 | <uses-permission android:name="android.permission.BLUETOOTH" /> | 10 | <uses-permission android:name="android.permission.BLUETOOTH"/> |
| 11 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | 11 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> |
| 12 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> | 12 | <uses-permission android:name="android.permission.WRITE_SETTINGS"/> |
| 13 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | 13 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 14 | <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> | 14 | <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> |
| 15 | <!-- Danger Level permission--> | 15 | <!-- Danger Level permission--> |
| 16 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | 16 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 17 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> | 17 | <uses-permission android:name="android.permission.GET_ACCOUNTS"/> |
| 18 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> | 18 | <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
| 19 | <uses-permission android:name="android.permission.SEND_SMS"/> | 19 | <uses-permission android:name="android.permission.SEND_SMS"/> |
| 20 | 20 | ||
| 21 | <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. --> | 21 | <!-- VERY IMPORTANT! Don't forget this permission, or in-app billing won't work. --> |
| 22 | <uses-permission android:name="com.android.vending.BILLING" /> | 22 | <uses-permission android:name="com.android.vending.BILLING"/> |
| 23 | 23 | ||
| 24 | <application | 24 | <application |
| 25 | android:allowBackup="true" | 25 | android:allowBackup="true" |
| 26 | android:icon="@drawable/ic_launcher" | 26 | android:icon="@drawable/ic_launcher" |
| 27 | 27 | ||
| 28 | android:label="@string/app_name" > | 28 | android:label="@string/app_name"> |
| 29 | <activity | 29 | <activity |
| 30 | android:name="com.gumptech.sdk.demo.MainActivity" | 30 | android:name="com.gumptech.sdk.demo.MainActivity" |
| 31 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" | 31 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
| 32 | android:label="@string/app_name" | 32 | android:label="@string/app_name" |
| 33 | android:screenOrientation="portrait" > | 33 | > |
| 34 | <intent-filter> | 34 | <intent-filter> |
| 35 | <action android:name="android.intent.action.MAIN" /> | 35 | <action android:name="android.intent.action.MAIN"/> |
| 36 | 36 | ||
| 37 | <category android:name="android.intent.category.LAUNCHER" /> | 37 | <category android:name="android.intent.category.LAUNCHER"/> |
| 38 | </intent-filter> | 38 | </intent-filter> |
| 39 | </activity> | 39 | </activity> |
| 40 | <activity | 40 | <activity |
| 41 | android:name="com.gumptech.sdk.ContainerActivity" | 41 | android:name="com.gumptech.sdk.ContainerActivity" |
| 42 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" | 42 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
| 43 | android:windowSoftInputMode="stateAlwaysHidden|adjustPan" | ||
| 44 | android:launchMode="singleTask" | 43 | android:launchMode="singleTask" |
| 45 | android:theme="@style/Theme.TransparentWin" > | 44 | android:theme="@style/Theme.TransparentWin" |
| 45 | android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> | ||
| 46 | </activity> | 46 | </activity> |
| 47 | <activity | 47 | <activity |
| 48 | android:name="com.gumptech.sdk.PaymentActivity" | 48 | android:name="com.gumptech.sdk.PaymentActivity" |
| 49 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" | 49 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
| 50 | android:launchMode="singleTask" | 50 | android:launchMode="singleTask" |
| 51 | android:theme="@android:style/Theme.Translucent.NoTitleBar" > | 51 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
| 52 | <intent-filter> | 52 | <intent-filter> |
| 53 | <category android:name="android.intent.category.DEFAULT" /> | 53 | <category android:name="android.intent.category.DEFAULT"/> |
| 54 | 54 | ||
| 55 | <action android:name="android.intent.action.VIEW" /> | 55 | <action android:name="android.intent.action.VIEW"/> |
| 56 | 56 | ||
| 57 | <category android:name="android.intent.category.BROWSABLE" /> | 57 | <category android:name="android.intent.category.BROWSABLE"/> |
| 58 | 58 | ||
| 59 | <data | 59 | <data |
| 60 | android:host="com.gump.sdk" | 60 | android:host="com.gump.sdk" |
| 61 | android:scheme="gump10031" /> | 61 | android:scheme="gump10031"/> |
| 62 | </intent-filter> | 62 | </intent-filter> |
| 63 | </activity> | 63 | </activity> |
| 64 | <activity | 64 | <activity |
| 65 | android:name="com.gumptech.sdk.ExchangeWindow" | 65 | android:name="com.gumptech.sdk.ExchangeWindow" |
| 66 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" | 66 | android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout" |
| 67 | android:theme="@style/Theme.WinForExchange" > | 67 | android:theme="@style/Theme.WinForExchange"> |
| 68 | </activity> | 68 | </activity> |
| 69 | 69 | ||
| 70 | <service android:name="com.gumptech.sdk.PushService" > | 70 | <service android:name="com.gumptech.sdk.PushService"> |
| 71 | </service> | 71 | </service> |
| 72 | 72 | ||
| 73 | <!-- vk --> | 73 | <!-- vk --> |
| 74 | <!-- <activity android:name="com.vk.com.gumptech.sdk.VKOpenAuthActivity" /> --> | 74 | <!-- <activity android:name="com.vk.com.gumptech.sdk.VKOpenAuthActivity" /> --> |
| 75 | <!-- <activity --> | 75 | <!-- <activity --> |
| 76 | <!-- android:name="com.vk.com.gumptech.sdk.VKServiceActivity" --> | 76 | <!-- android:name="com.vk.com.gumptech.sdk.VKServiceActivity" --> |
| 77 | <!-- android:label="ServiceActivity" --> | 77 | <!-- android:label="ServiceActivity" --> |
| 78 | <!-- android:theme="@style/VK.Transparent" /> --> | 78 | <!-- android:theme="@style/VK.Transparent" /> --> |
| 79 | </application> | 79 | </application> |
| 80 | 80 | ||
| 81 | 81 | ||
| 82 | </manifest> | 82 | </manifest> |