Kirill Grouchnikov | 578e5ba | 2019-12-17 11:47:24 -0500 | [diff] [blame] | 1 | import static androidx.build.dependencies.DependenciesKt.KOTLIN_STDLIB |
| 2 | |
| 3 | plugins { |
| 4 | id("AndroidXPlugin") |
| 5 | id("com.android.application") |
| 6 | id("kotlin-android") |
| 7 | } |
| 8 | |
| 9 | dependencies { |
Kirill Grouchnikov | 578e5ba | 2019-12-17 11:47:24 -0500 | [diff] [blame] | 10 | implementation(project(":appcompat:appcompat")) |
| 11 | implementation(project(":core:core")) |
| 12 | api(KOTLIN_STDLIB) |
| 13 | } |
| 14 | |
| 15 | android { |
| 16 | defaultConfig { |
| 17 | vectorDrawables.useSupportLibrary = true |
Kirill Grouchnikov | 248b44f | 2020-05-11 14:38:50 -0400 | [diff] [blame] | 18 | minSdkVersion=14 |
Kirill Grouchnikov | 578e5ba | 2019-12-17 11:47:24 -0500 | [diff] [blame] | 19 | } |
| 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 | } |