Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 1 | apply plugin: android.support.SupportAndroidLibraryPlugin |
| 2 | |
| 3 | dependencies { |
| 4 | api project(':appcompat-v7') |
| 5 | api project(':cardview-v7') |
| 6 | api project(':support-annotations') |
Anthony Chen | ab07f45 | 2017-09-25 15:35:17 -0700 | [diff] [blame] | 7 | api project(':support-v4') |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 8 | 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 | |
| 16 | android { |
| 17 | defaultConfig { |
| 18 | minSdkVersion 24 |
| 19 | } |
| 20 | |
| 21 | sourceSets { |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 22 | main.res.srcDirs 'res', 'res-public' |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | supportLibrary { |
| 27 | name 'Android Car Support UI' |
| 28 | publish false |
| 29 | inceptionYear '2017' |
| 30 | description 'Android Car Support UI' |
Anthony Chen | 821d290 | 2017-10-03 15:26:22 -0700 | [diff] [blame] | 31 | java8Library true |
Anthony Chen | 8b2eb6e | 2017-09-08 11:42:56 -0700 | [diff] [blame] | 32 | } |