blob: 902b0d53b9701b44208f84ba31b5883e08ddaa1c [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import androidx.build.Publish
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api("androidx.annotation:annotation:1.1.0")
api("androidx.core:core:1.1.0")
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 = Publish.SNAPSHOT_AND_RELEASE
mavenVersion = LibraryVersions.TVPROVIDER
mavenGroup = LibraryGroups.TVPROVIDER
inceptionYear = "2017"
description = "Android Support Library for TV Provider"
failOnDeprecationWarnings = false
}