Aurimas Liutikas | 526389b | 2018-02-27 14:01:24 -0800 | [diff] [blame^] | 1 | import static androidx.build.dependencies.DependenciesKt.* |
| 2 | import androidx.build.LibraryGroups |
| 3 | import androidx.build.LibraryVersions |
Aurimas Liutikas | 7f40a7e | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 4 | |
Aurimas Liutikas | f8b708a | 2017-11-02 16:07:13 -0700 | [diff] [blame] | 5 | plugins { |
| 6 | id("SupportAndroidLibraryPlugin") |
| 7 | } |
Jaekyun Seok | bc73409 | 2014-04-10 08:12:34 +0900 | [diff] [blame] | 8 | |
| 9 | dependencies { |
Aurimas Liutikas | b8fd9b6 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 10 | 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 Liutikas | f09d858 | 2017-01-20 21:49:51 -0800 | [diff] [blame] | 15 | |
Jake Wharton | 66807fc | 2017-12-05 14:44:35 -0500 | [diff] [blame] | 16 | androidTestImplementation(TEST_RUNNER) |
| 17 | androidTestImplementation(ESPRESSO_CORE) |
Aurimas Liutikas | b8fd9b6 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 18 | 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 Seok | bc73409 | 2014-04-10 08:12:34 +0900 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | android { |
Jaekyun Seok | bc73409 | 2014-04-10 08:12:34 +0900 | [diff] [blame] | 23 | sourceSets { |
Aurimas Liutikas | 3ebde3b | 2018-02-14 15:53:39 -0800 | [diff] [blame] | 24 | main.java.srcDirs += [ |
Alan Viverette | 9439d70 | 2016-10-25 14:45:10 +0100 | [diff] [blame] | 25 | 'common', |
| 26 | 'jbmr2', |
| 27 | 'kitkat', |
| 28 | 'api21', |
Alan Viverette | 9439d70 | 2016-10-25 14:45:10 +0100 | [diff] [blame] | 29 | ] |
Jaekyun Seok | bc73409 | 2014-04-10 08:12:34 +0900 | [diff] [blame] | 30 | } |
Xavier Ducrohet | 9acddc7 | 2014-05-28 22:20:01 -0700 | [diff] [blame] | 31 | } |
| 32 | |
Aurimas Liutikas | 16cd13b | 2017-01-04 15:00:13 -0800 | [diff] [blame] | 33 | supportLibrary { |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 34 | name = "Android Support Leanback v17" |
| 35 | publish = true |
Aurimas Liutikas | 78c1ab7 | 2017-11-08 13:33:51 -0800 | [diff] [blame] | 36 | mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
Aurimas Liutikas | 7f40a7e | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 37 | mavenGroup = LibraryGroups.SUPPORT |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 38 | inceptionYear = "2014" |
| 39 | description = "Android Support Leanback v17" |
Aurimas Liutikas | d794613 | 2017-12-14 08:05:08 -0800 | [diff] [blame] | 40 | minSdkVersion = 17 |
Aurimas Liutikas | 16cd13b | 2017-01-04 15:00:13 -0800 | [diff] [blame] | 41 | } |