2023-06-23 17:40:29 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace "com.otaliastudios.autocomplete"
|
|
|
|
|
|
|
|
compileSdk versions.compileSdk
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdk versions.minSdk
|
|
|
|
targetSdk versions.targetSdk
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility versions.sourceCompat
|
|
|
|
targetCompatibility versions.targetCompat
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
2024-07-15 18:12:08 +02:00
|
|
|
jvmTarget = versions.jvmTarget
|
2023-06-23 17:40:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation libs.androidx.recyclerview
|
|
|
|
}
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
tasks.findAll { it.name.startsWith("lint") }.each {
|
|
|
|
it.enabled = false
|
|
|
|
}
|
|
|
|
}
|