Aurimas Liutikas | b8fd9b6 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 1 | import static android.support.dependencies.DependenciesKt.* |
Aurimas Liutikas | 44d7d86 | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 2 | import android.support.LibraryGroups |
| 3 | |
Aurimas Liutikas | 19d63aa | 2017-11-07 03:37:16 +0000 | [diff] [blame] | 4 | plugins { |
| 5 | id("SupportAndroidLibraryPlugin") |
| 6 | } |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 7 | |
| 8 | dependencies { |
| 9 | api project(':appcompat-v7') |
| 10 | api project(':cardview-v7') |
| 11 | api project(':support-annotations') |
Anthony Chen | ab07f45 | 2017-09-25 15:35:17 -0700 | [diff] [blame] | 12 | api project(':support-v4') |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 13 | api project(':recyclerview-v7') |
| 14 | |
Jake Wharton | 66807fc | 2017-12-05 14:44:35 -0500 | [diff] [blame] | 15 | androidTestImplementation(TEST_RUNNER) |
| 16 | androidTestImplementation(ESPRESSO_CORE) |
Aurimas Liutikas | b8fd9b6 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 17 | androidTestImplementation(ESPRESSO_CONTRIB, libs.exclude_support) |
| 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 |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | android { |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 23 | sourceSets { |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 24 | main.res.srcDirs 'res', 'res-public' |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | supportLibrary { |
Aurimas Liutikas | 44d7d86 | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 29 | name = "Android Car Support UI" |
| 30 | publish = false |
| 31 | mavenGroup = LibraryGroups.SUPPORT |
| 32 | inceptionYear = "2017" |
| 33 | description = "Android Car Support UI" |
| 34 | java8Library = true |
| 35 | legacySourceLocation = true |
Aurimas Liutikas | d794613 | 2017-12-14 08:05:08 -0800 | [diff] [blame] | 36 | minSdkVersion = 24 |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 37 | } |