blob: 6f88e9accd51c2d89fd2902bd41c3498544dc890 [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Kirill Grouchnikovff22d812016-05-11 15:24:25 -07002
Kirill Grouchnikovff22d812016-05-11 15:24:25 -07003dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07004 api project(':support-annotations')
5 api project(':support-compat')
Aurimas Liutikasf09d8582017-01-20 21:49:51 -08006
Aurimas Liutikas9edca682017-07-25 09:12:35 -07007 androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
8 androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
9 androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
10 androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070011 androidTestImplementation project(':support-testutils')
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070012}
13
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070014android {
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070015 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080016 minSdkVersion 14
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070017 }
18
19 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010020 main.java.srcDirs = [
Alan Viverette9439d702016-10-25 14:45:10 +010021 'java'
22 ]
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070023 }
24
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070025 buildTypes.all {
26 consumerProguardFiles 'proguard-rules.pro'
27 }
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070028}
29
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080030supportLibrary {
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070031 name 'Android Support Library core UI'
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080032 inceptionYear '2011'
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070033 description "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later."
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080034}