Blame view

GameSDKDemo/build.gradle 778 Bytes
06e47b8f0   赵康   修改包名,修改域名,全新打包
1
2
3
4
5
6
7
8
9
10
11
  apply plugin: 'com.android.application'
  
  repositories{
      flatDir{
          dirs 'libs'
      }
  }
  
  android {
      compileSdkVersion 22
      buildToolsVersion "25.0.0"
06e47b8f0   赵康   修改包名,修改域名,全新打包
12
13
14
      defaultConfig {
          minSdkVersion 9
          targetSdkVersion 22
2d1a34aa9   赵康   v4.1.6:修复gp支付无回调的bug
15
16
          versionCode 1000002
          versionName "1.0.2"
06e47b8f0   赵康   修改包名,修改域名,全新打包
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
      }
  
      buildTypes {
          release {
              minifyEnabled false
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
      lintOptions{
          abortOnError false
      }
  }
  
  dependencies {
      compile fileTree(dir: 'libs', include: ['*.jar'])
      testCompile 'junit:junit:4.12'
      compile 'com.android.support:appcompat-v7:22.2.0'
2d1a34aa9   赵康   v4.1.6:修复gp支付无回调的bug
34
  //    compile project(':GameSDK')
0a575261c   赵康   v4.2.1:clear for ...
35
      compile(name:'GameSDK-ND-release4.2.1',ext:'aar')
06e47b8f0   赵康   修改包名,修改域名,全新打包
36
  }