blob: bc9e2d70278b40b19c9e12929e3d4cd6b34f1c21 [file] [log] [blame]
Kirill Grouchnikov578e5ba2019-12-17 11:47:24 -05001import static androidx.build.dependencies.DependenciesKt.KOTLIN_STDLIB
2
3plugins {
4 id("AndroidXPlugin")
5 id("com.android.application")
6 id("kotlin-android")
7}
8
9dependencies {
Kirill Grouchnikov578e5ba2019-12-17 11:47:24 -050010 implementation(project(":appcompat:appcompat"))
11 implementation(project(":core:core"))
12 api(KOTLIN_STDLIB)
13}
14
15android {
16 defaultConfig {
17 vectorDrawables.useSupportLibrary = true
Kirill Grouchnikov248b44f2020-05-11 14:38:50 -040018 minSdkVersion=14
Kirill Grouchnikov578e5ba2019-12-17 11:47:24 -050019 }
20 lintOptions {
21 disable "WrongThread"
22 // TODO: Enable lint after appcompat:1.1.0 release or use lint-baseline.xml instead.
23 abortOnError false
24 }
25}