33 lines
610 B
Groovy
33 lines
610 B
Groovy
|
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 {
|
||
|
jvmTarget = "11"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation libs.androidx.recyclerview
|
||
|
}
|
||
|
|
||
|
afterEvaluate {
|
||
|
tasks.findAll { it.name.startsWith("lint") }.each {
|
||
|
it.enabled = false
|
||
|
}
|
||
|
}
|