blob: 902b0d53b9701b44208f84ba31b5883e08ddaa1c [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 Liutikas75e93a02019-05-28 16:31:38 -07004import androidx.build.Publish
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07005
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07006plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01007 id("AndroidXPlugin")
8 id("com.android.library")
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07009}
Dongwon Kang83178b72017-01-16 15:09:25 -080010
11dependencies {
Nick Anthonyac4cf062019-06-04 10:59:29 -040012 api("androidx.annotation:annotation:1.1.0")
Nick Anthonyf9dabf92019-08-16 10:38:30 -040013 api("androidx.core:core:1.1.0")
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070014
Dustin Lam3979d962019-04-08 10:40:19 -070015 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
16 androidTestImplementation(ANDROIDX_TEST_CORE)
17 androidTestImplementation(ANDROIDX_TEST_RUNNER)
18 androidTestImplementation(ANDROIDX_TEST_RULES)
isaidaba04fb2018-02-26 13:12:52 -080019 androidTestImplementation(MOCKITO_CORE)
Dongwon Kang83178b72017-01-16 15:09:25 -080020}
21
Jake Whartonc2d75492018-07-13 19:24:58 -040022android {
23 defaultConfig {
24 minSdkVersion 21
25 }
26}
27
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070028androidx {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080029 name = "Android Support TV Provider"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070030 publish = Publish.SNAPSHOT_AND_RELEASE
Nick Anthony95516532018-10-31 13:59:57 -040031 mavenVersion = LibraryVersions.TVPROVIDER
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080032 mavenGroup = LibraryGroups.TVPROVIDER
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080033 inceptionYear = "2017"
34 description = "Android Support Library for TV Provider"
Aurimas Liutikasbfef0932018-04-04 13:25:38 -070035 failOnDeprecationWarnings = false
Jake Whartonc2d75492018-07-13 19:24:58 -040036}