blob: 487f2bc9ed2c8734f81b9bb628062d6f6b37e938 [file] [log] [blame]
Aurimas Liutikas831c4662017-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
Aurimas Liutikas831c4662017-11-22 12:55:43 -080015 androidTestImplementation(TEST_RUNNER, libs.exclude_annotations)
16 androidTestImplementation(ESPRESSO_CORE, libs.exclude_annotations)
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 Chen8b2eb6e2017-09-08 11:42:56 -070020}
21
22android {
23 defaultConfig {
24 minSdkVersion 24
25 }
26
27 sourceSets {
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070028 main.res.srcDirs 'res', 'res-public'
29 }
30}
31
32supportLibrary {
Aurimas Liutikas44d7d862017-10-27 17:55:06 -070033 name = "Android Car Support UI"
34 publish = false
35 mavenGroup = LibraryGroups.SUPPORT
36 inceptionYear = "2017"
37 description = "Android Car Support UI"
38 java8Library = true
39 legacySourceLocation = true
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070040}