blob: ad377c63388e98eef6e3113b35ad706f55879ff9 [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api(project(":annotation"))
api(project(":core"))
androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
androidTestImplementation(ANDROIDX_TEST_CORE)
androidTestImplementation(ANDROIDX_TEST_RUNNER)
androidTestImplementation(ANDROIDX_TEST_RULES)
androidTestImplementation(MOCKITO_CORE)
}
android {
defaultConfig {
minSdkVersion 21
}
}
androidx {
name = "Android Support TV Provider"
publish = true
mavenVersion = LibraryVersions.TVPROVIDER
mavenGroup = LibraryGroups.TVPROVIDER
inceptionYear = "2017"
description = "Android Support Library for TV Provider"
failOnUncheckedWarnings = false
failOnDeprecationWarnings = false
}