blob: 3bb5c844a2485484fc47be5183a0d57c29ea4fd6 [file] [log] [blame]
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api(project(":annotation"))
implementation("androidx.collection:collection:1.0.0")
api("androidx.appcompat:appcompat:1.0.0")
api("androidx.recyclerview:recyclerview:1.0.0")
api(project(":preference"))
api(project(":leanback"))
}
android {
defaultConfig {
minSdkVersion 21
}
sourceSets {
main.java.srcDirs += [
'api21'
]
}
}
androidx {
name = "AndroidX Leanback Preference"
publish = true
mavenVersion = LibraryVersions.LEANBACK_PREFERENCE
mavenGroup = LibraryGroups.LEANBACK
inceptionYear = "2015"
description = "AndroidX Leanback Preference"
failOnDeprecationWarnings = false
}