23 lines
460 B
Groovy
23 lines
460 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion = Versions.COMPILE_SDK
|
|
buildToolsVersion = Versions.BUILD_TOOLS
|
|
|
|
defaultConfig {
|
|
minSdkVersion Versions.MIN_SDK
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.androidx.annotation)
|
|
} |