You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
612 B
26 lines
612 B
2 years ago
|
apply {
|
||
|
plugin "com.android.library"
|
||
|
plugin "org.jetbrains.kotlin.android"
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion libs.versions.compilesdk.get().toInteger()
|
||
|
buildToolsVersion libs.versions.buildToolsVersion.get()
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion libs.versions.minSdk.get().toInteger()
|
||
|
targetSdkVersion libs.versions.targetsdk.get().toInteger()
|
||
|
|
||
|
consumerProguardFiles 'consumer-rules.pro'
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
}
|