blob: 13246f857412a8ff226f3750fb7e8907ad7ea2bb [file] [log] [blame]
plugins {
id("AndroidXPlugin")
id("com.android.application")
id("kotlin-android")
}
dependencies {
implementation(project(":appcompat:appcompat"))
implementation(projectOrArtifact(":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
}
namespace "com.example.android.appcompat"
}