blob: 4e7666aa4216e67c493aaa033cc1ae88f333eb85 [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.KOTLIN_STDLIB
import static androidx.build.dependencies.DependenciesKt.MATERIAL
plugins {
id("AndroidXPlugin")
id("com.android.application")
id("kotlin-android")
}
dependencies {
api(KOTLIN_STDLIB)
implementation(project(":appcompat:appcompat"))
implementation(project(":cardview:cardview"))
implementation project(":drawerlayout:drawerlayout")
implementation(project(":gridlayout:gridlayout"))
implementation(project(":mediarouter:mediarouter"))
implementation(project(":palette:palette"))
implementation(project(":recyclerview:recyclerview"))
implementation project(":recyclerview:recyclerview-selection")
implementation 'androidx.concurrent:concurrent-futures:1.1.0'
api(MATERIAL)
}
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
}
}