2016-12-20 22:07:00 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2019-02-01 09:19:44 +08:00
|
|
|
compileSdkVersion 26
|
|
|
|
buildToolsVersion "28.0.3"
|
2016-12-20 22:07:00 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-02-01 09:19:44 +08:00
|
|
|
minSdkVersion 15
|
|
|
|
targetSdkVersion 26
|
2016-12-20 22:07:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-02-01 09:19:44 +08:00
|
|
|
api 'com.android.support:support-v4:26.1.0'
|
2016-12-20 22:07:00 +08:00
|
|
|
}
|