blob: da4b168b2fd9d02d018b0c59f4588241adc822a1 [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}
Jaekyun Seokbc734092014-04-10 08:12:34 +09008
9dependencies {
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080010 api(project(":support-compat"))
11 api(project(":support-core-ui"))
12 api(project(":support-media-compat"))
13 api(project(":support-fragment"))
14 api(project(":recyclerview-v7"))
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080015
Jake Wharton66807fc2017-12-05 14:44:35 -050016 androidTestImplementation(TEST_RUNNER)
17 androidTestImplementation(ESPRESSO_CORE)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080018 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
19 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
Jaekyun Seokbc734092014-04-10 08:12:34 +090020}
21
22android {
Jaekyun Seokbc734092014-04-10 08:12:34 +090023 sourceSets {
Aurimas Liutikas3ebde3b2018-02-14 15:53:39 -080024 main.java.srcDirs += [
Alan Viverette9439d702016-10-25 14:45:10 +010025 'common',
26 'jbmr2',
27 'kitkat',
28 'api21',
Alan Viverette9439d702016-10-25 14:45:10 +010029 ]
Jaekyun Seokbc734092014-04-10 08:12:34 +090030 }
Xavier Ducrohet9acddc72014-05-28 22:20:01 -070031}
32
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080033supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080034 name = "Android Support Leanback v17"
35 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080036 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070037 mavenGroup = LibraryGroups.SUPPORT
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080038 inceptionYear = "2014"
39 description = "Android Support Leanback v17"
Aurimas Liutikasd7946132017-12-14 08:05:08 -080040 minSdkVersion = 17
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080041}