Blame view

GameSDKDemo/build.gradle 942 Bytes
d6bc71fcb   赵康   add the project o...
1
  apply plugin: 'com.android.application'
43932caac   赵康   update for UI,add...
2
3
  repositories {
      flatDir {
d6bc71fcb   赵康   add the project o...
4
5
6
7
8
9
          dirs 'libs'
      }
  }
  
  android {
      compileSdkVersion 22
43932caac   赵康   update for UI,add...
10
      buildToolsVersion "26.0.2"
d6bc71fcb   赵康   add the project o...
11

d6bc71fcb   赵康   add the project o...
12
13
14
      defaultConfig {
          minSdkVersion 9
          targetSdkVersion 22
adab52895   赵康   version:4.2.0:增加G...
15
16
          versionCode 5
          versionName "1.3"
7a5aadf06   赵康   v4.1.5:新增运营接口
17
          testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
d6bc71fcb   赵康   add the project o...
18
19
20
21
22
23
24
25
      }
  
      buildTypes {
          release {
              minifyEnabled false
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
43932caac   赵康   update for UI,add...
26
      lintOptions {
d6bc71fcb   赵康   add the project o...
27
28
29
30
31
32
33
34
          abortOnError false
      }
  }
  
  dependencies {
      compile fileTree(dir: 'libs', include: ['*.jar'])
      testCompile 'junit:junit:4.12'
      compile 'com.android.support:appcompat-v7:22.2.0'
43932caac   赵康   update for UI,add...
35
36
      //微信
  //    compile 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
064eb2054   赵康   分离iap支付方法
37
  //    compile project(':GameSDK')
38e7800dc   赵康   禁用debug模式
38
      compile(name: 'GameSDK-release4.3.2', ext: 'aar')
7a5aadf06   赵康   v4.1.5:新增运营接口
39

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