blob: 2c18244d20c9793a98564af164995f37dcc4e35b [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import static androidx.build.dependencies.DependenciesKt.*
2import androidx.build.LibraryGroups
3import androidx.build.LibraryVersions
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07004
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07005plugins {
6 id("SupportAndroidLibraryPlugin")
7}
Dongwon Kang83178b72017-01-16 15:09:25 -08008
9dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080010 api(project(":annotation"))
11 api(project(":core"))
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070012
Alan Viverettebadf2f82018-12-18 12:14:10 -050013 androidTestImplementation(TEST_EXT_JUNIT)
14 androidTestImplementation(TEST_CORE)
Aurimas Liutikas3f9ceb62018-07-10 11:57:16 -070015 androidTestImplementation(TEST_RUNNER)
16 androidTestImplementation(TEST_RULES)
isaidaba04fb2018-02-26 13:12:52 -080017 androidTestImplementation(MOCKITO_CORE)
Dongwon Kang83178b72017-01-16 15:09:25 -080018}
19
Jake Whartonc2d75492018-07-13 19:24:58 -040020android {
21 defaultConfig {
22 minSdkVersion 21
23 }
24}
25
Aurimas Liutikas5c76d902017-01-26 10:07:58 -080026supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080027 name = "Android Support TV Provider"
28 publish = true
Nick Anthony95516532018-10-31 13:59:57 -040029 mavenVersion = LibraryVersions.TVPROVIDER
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080030 mavenGroup = LibraryGroups.TVPROVIDER
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080031 inceptionYear = "2017"
32 description = "Android Support Library for TV Provider"
Aurimas Liutikasbfef0932018-04-04 13:25:38 -070033 failOnUncheckedWarnings = false
34 failOnDeprecationWarnings = false
Jake Whartonc2d75492018-07-13 19:24:58 -040035}