blob: 6aa18657bf86be992ff71f00e286404319352200 [file] [log] [blame]
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -08001import static android.support.dependencies.DependenciesKt.*
Aurimas Liutikas44d7d862017-10-27 17:55:06 -07002import android.support.LibraryGroups
Anthony Chen68a1a432017-12-14 17:43:46 -08003import android.support.LibraryVersions
Aurimas Liutikas44d7d862017-10-27 17:55:06 -07004
Aurimas Liutikas19d63aa2017-11-07 03:37:16 +00005plugins {
6 id("SupportAndroidLibraryPlugin")
7}
Anthony Chen8b2eb6e2017-09-08 11:42:56 -07008
9dependencies {
10 api project(':appcompat-v7')
11 api project(':cardview-v7')
12 api project(':support-annotations')
Anthony Chenab07f452017-09-25 15:35:17 -070013 api project(':support-v4')
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070014 api project(':recyclerview-v7')
15
Jake Wharton66807fc2017-12-05 14:44:35 -050016 androidTestImplementation(TEST_RUNNER)
17 androidTestImplementation(ESPRESSO_CORE)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080018 androidTestImplementation(ESPRESSO_CONTRIB, libs.exclude_support)
19 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
20 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
Yao, Yuxingd0e9e802017-12-14 17:59:14 -080021
22 testImplementation(JUNIT)
23 testImplementation(TEST_RUNNER)
24 testImplementation(MOCKITO_CORE)
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070025}
26
27android {
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070028 sourceSets {
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070029 main.res.srcDirs 'res', 'res-public'
30 }
31}
32
33supportLibrary {
Aurimas Liutikas44d7d862017-10-27 17:55:06 -070034 name = "Android Car Support UI"
35 publish = false
Anthony Chen68a1a432017-12-14 17:43:46 -080036 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikas44d7d862017-10-27 17:55:06 -070037 mavenGroup = LibraryGroups.SUPPORT
38 inceptionYear = "2017"
39 description = "Android Car Support UI"
40 java8Library = true
41 legacySourceLocation = true
Aurimas Liutikasd7946132017-12-14 08:05:08 -080042 minSdkVersion = 24
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070043}