blob: 0ed34106e335cc67c215a2ef35bcac8a20b65782 [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
}
namespace "com.example.android.appcompat"
}