Blame view

app/build.gradle 1.43 KB
c507bd179   赵康   add ignore file
1
  apply plugin: 'com.android.application'
842cbfbfb   赵康   增加文档
2

c507bd179   赵康   add ignore file
3
4
5
6
  android {
      compileSdkVersion 27
      defaultConfig {
          applicationId "com.gump.passport.demo"
f905cc410   赵康   SDK has update to...
7
          minSdkVersion 15
c507bd179   赵康   add ignore file
8
          targetSdkVersion 27
f905cc410   赵康   SDK has update to...
9
10
          versionCode 9
          versionName "1.0.9"
c507bd179   赵康   add ignore file
11
          testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
f905cc410   赵康   SDK has update to...
12
          vectorDrawables.useSupportLibrary = true
c507bd179   赵康   add ignore file
13
14
15
16
17
18
19
      }
      buildTypes {
          release {
              minifyEnabled false
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
842cbfbfb   赵康   增加文档
20
21
22
23
      applicationVariants.all {
          variant ->
              variant.outputs.all {
                  outputFileName = "SDKDemo-" + variant.name + defaultConfig.versionName + ".apk"
c507bd179   赵康   add ignore file
24
25
              }
      }
842cbfbfb   赵康   增加文档
26
27
28
29
  
      lintOptions {
          abortOnError false
      }
c507bd179   赵康   add ignore file
30
31
32
33
  }
  
  dependencies {
      implementation fileTree(dir: 'libs', include: ['*.jar'])
083363ada   赵康   添加基础依赖
34
      implementation 'com.android.support:appcompat-v7:27.1.1'
f905cc410   赵康   SDK has update to...
35
36
      implementation 'com.android.support:support-v4:27.1.1'
      implementation 'com.android.support:support-vector-drawable:27.1.1'
c507bd179   赵康   add ignore file
37
      testImplementation 'junit:junit:4.12'
c507bd179   赵康   add ignore file
38

842cbfbfb   赵康   增加文档
39
      //基础功能依赖,必须
9e8388286   赵康   修改账号绑定,增加账号联动
40
  //    implementation 'com.gump:base:5.1.1'
842cbfbfb   赵康   增加文档
41
  //    implementation project(':base')
f905cc410   赵康   SDK has update to...
42
  //    登录功能依赖
9e8388286   赵康   修改账号绑定,增加账号联动
43
      implementation 'com.gump:Passport:5.2.2'
842cbfbfb   赵康   增加文档
44
45
  //    implementation project(':passport')
      //支付功能依赖
020faf4c8   赵康   文档更新
46
      implementation 'com.gump:Payment:5.2.3'
842cbfbfb   赵康   增加文档
47
  //    implementation project(':payment')
c507bd179   赵康   add ignore file
48
  }