Blame view
app/build.gradle
1.25 KB
c507bd179
![]() |
1 |
apply plugin: 'com.android.application' |
842cbfbfb
![]() |
2 |
|
c507bd179
![]() |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
android { compileSdkVersion 27 defaultConfig { applicationId "com.gump.passport.demo" minSdkVersion 14 targetSdkVersion 27 versionCode 2 versionName "1.0.1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } |
842cbfbfb
![]() |
19 20 21 22 |
applicationVariants.all { variant -> variant.outputs.all { outputFileName = "SDKDemo-" + variant.name + defaultConfig.versionName + ".apk" |
c507bd179
![]() |
23 24 |
} } |
842cbfbfb
![]() |
25 26 27 28 |
lintOptions { abortOnError false } |
c507bd179
![]() |
29 30 31 32 |
} dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) |
083363ada
![]() |
33 |
implementation 'com.android.support:appcompat-v7:27.1.1' |
c507bd179
![]() |
34 |
testImplementation 'junit:junit:4.12' |
c507bd179
![]() |
35 |
|
842cbfbfb
![]() |
36 37 38 39 40 41 42 43 44 |
//基础功能依赖,必须 implementation 'com.gump:base:5.0.0' // implementation project(':base') //登录功能依赖 implementation 'com.gump:Passport:5.0.0' // implementation project(':passport') //支付功能依赖 implementation 'com.gump:Payment:5.0.0' // implementation project(':payment') |
c507bd179
![]() |
45 |
} |