blob: ea2bf1a27f21023b1e52604156fe024385a87810 [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
3
Aurimas Liutikas19d63aa2017-11-07 03:37:16 +00004plugins {
5 id("SupportAndroidLibraryPlugin")
6}
Anthony Chen8b2eb6e2017-09-08 11:42:56 -07007
8dependencies {
9 api project(':appcompat-v7')
10 api project(':cardview-v7')
11 api project(':support-annotations')
Anthony Chenab07f452017-09-25 15:35:17 -070012 api project(':support-v4')
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070013 api project(':recyclerview-v7')
14
Jake Wharton66807fc2017-12-05 14:44:35 -050015 androidTestImplementation(TEST_RUNNER)
16 androidTestImplementation(ESPRESSO_CORE)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080017 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 Chen8b2eb6e2017-09-08 11:42:56 -070020}
21
22android {
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070023 sourceSets {
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070024 main.res.srcDirs 'res', 'res-public'
25 }
26}
27
28supportLibrary {
Aurimas Liutikas44d7d862017-10-27 17:55:06 -070029 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 Liutikasd7946132017-12-14 08:05:08 -080036 minSdkVersion = 24
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070037}