You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
600 B
Groovy
28 lines
600 B
Groovy
2 years ago
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 26
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
defaultConfig {
|
||
|
minSdkVersion 16
|
||
|
targetSdkVersion 26
|
||
|
consumerProguardFiles 'proguard-rules.pro'
|
||
|
versionCode 38
|
||
|
versionName "1.1.17.1124"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled true
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
buildToolsVersion '28.0.3'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
}
|
||
|
|