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