25 lines
544 B
Groovy
25 lines
544 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
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.appcompat)
|
|
implementation(libs.androidx.recyclerview)
|
|
} |