blob: 5a55b56ff7bc1fa85ddd8602a516c656b6049991 [file] [log] [blame]
Anthony Chen8b2eb6e2017-09-08 11:42:56 -07001apply plugin: android.support.SupportAndroidLibraryPlugin
2
3dependencies {
4 api project(':appcompat-v7')
5 api project(':cardview-v7')
6 api project(':support-annotations')
Anthony Chenab07f452017-09-25 15:35:17 -07007 api project(':support-v4')
Anthony Chen8b2eb6e2017-09-08 11:42:56 -07008 api project(':recyclerview-v7')
9
10 androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
11 androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
12 androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
13 androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
14}
15
16android {
17 defaultConfig {
18 minSdkVersion 24
19 }
20
21 sourceSets {
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070022 main.res.srcDirs 'res', 'res-public'
23 }
24}
25
26supportLibrary {
27 name 'Android Car Support UI'
28 publish false
29 inceptionYear '2017'
30 description 'Android Car Support UI'
Anthony Chen821d2902017-10-03 15:26:22 -070031 java8Library true
Anthony Chen8b2eb6e2017-09-08 11:42:56 -070032}