blob: 0f821f9b709ddd590703e2a886e0c9c056a8fb1e [file] [log] [blame]
plugins {
id("AndroidXPlugin")
id("com.android.application")
id("kotlin-android")
}
dependencies {
implementation(project(":appcompat:appcompat"))
implementation(project(":core:core"))
api(libs.kotlinStdlib)
}
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
lintOptions {
disable "WrongThread"
// TODO: Enable lint after appcompat:1.1.0 release or use lint-baseline.xml instead.
abortOnError false
}
}