2017-06-11 19:24:09 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2021-05-08 00:11:00 +08:00
|
|
|
compileSdkVersion rootProject.ext.android.COMPILE_SDK_VERSION
|
2017-06-11 19:24:09 +08:00
|
|
|
|
2021-05-08 00:11:00 +08:00
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion rootProject.ext.android.MIN_SDK_VERSION
|
|
|
|
targetSdkVersion rootProject.ext.android.TARGET_SDK_VERSION
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
2021-05-08 00:11:00 +08:00
|
|
|
}
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-08 00:11:00 +08:00
|
|
|
api 'com.github.michael-rapp:android-util:1.15.0'
|
|
|
|
implementation rootProject.ext.deps["annotations"]
|
|
|
|
testImplementation rootProject.ext.deps["junit"]
|
2021-04-21 04:21:51 +08:00
|
|
|
|
2021-05-08 00:11:00 +08:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'androidx.appcompat:appcompat-resources:1.2.0'
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|