Blame view

GameSDKDemo/build.gradle 851 Bytes
d6bc71fcb   赵康   add the project o...
1
2
3
4
5
6
7
8
9
10
  apply plugin: 'com.android.application'
  
  repositories{
      flatDir{
          dirs 'libs'
      }
  }
  
  android {
      compileSdkVersion 22
c065ccf33   赵康   升级4.1.5,修改gp支付生成订...
11
      buildToolsVersion "25.0.0"
d6bc71fcb   赵康   add the project o...
12

d6bc71fcb   赵康   add the project o...
13
14
15
      defaultConfig {
          minSdkVersion 9
          targetSdkVersion 22
969c0010c   赵康   v4.1.6:修复gp支付无回调的bug
16
          versionCode 4
7a5aadf06   赵康   v4.1.5:新增运营接口
17
18
          versionName "1.2"
          testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
d6bc71fcb   赵康   add the project o...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
      }
  
      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'
064eb2054   赵康   分离iap支付方法
36
  //    compile project(':GameSDK')
969c0010c   赵康   v4.1.6:修复gp支付无回调的bug
37
      compile(name:'GameSDK-release4.1.6',ext:'aar')
7a5aadf06   赵康   v4.1.5:新增运营接口
38

d6bc71fcb   赵康   add the project o...
39
  }