Blame view
app/build.gradle
1.43 KB
|
c507bd179
|
1 |
apply plugin: 'com.android.application' |
|
842cbfbfb
|
2 |
|
|
c507bd179
|
3 4 5 6 |
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.gump.passport.demo"
|
|
f905cc410
|
7 |
minSdkVersion 15 |
|
c507bd179
|
8 |
targetSdkVersion 27 |
|
f905cc410
|
9 10 |
versionCode 9
versionName "1.0.9"
|
|
c507bd179
|
11 |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
|
f905cc410
|
12 |
vectorDrawables.useSupportLibrary = true |
|
c507bd179
|
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
|
24 25 |
}
}
|
|
842cbfbfb
|
26 27 28 29 |
lintOptions {
abortOnError false
}
|
|
c507bd179
|
30 31 32 33 |
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
083363ada
|
34 |
implementation 'com.android.support:appcompat-v7:27.1.1' |
|
f905cc410
|
35 36 |
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:support-vector-drawable:27.1.1'
|
|
c507bd179
|
37 |
testImplementation 'junit:junit:4.12' |
|
c507bd179
|
38 |
|
|
842cbfbfb
|
39 |
//基础功能依赖,必须 |
|
9e8388286
|
40 |
// implementation 'com.gump:base:5.1.1' |
|
842cbfbfb
|
41 |
// implementation project(':base')
|
|
f905cc410
|
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
|
48 |
} |