blob: 239516f0f13a75dc2fd9bd27585cd105eb599a4a [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08002
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08003dependencies {
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
Griff Hazen43227bb2014-05-28 07:59:33 -070011}
12
13android {
Griff Hazen43227bb2014-05-28 07:59:33 -070014 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080015 minSdkVersion 14
Griff Hazen43227bb2014-05-28 07:59:33 -070016 }
17
18 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010019 main.java.srcDirs = [
20 'gingerbread',
Alan Viverette9439d702016-10-25 14:45:10 +010021 'kitkat',
22 'api20',
23 'api21',
24 'api23',
25 'api24',
26 'java'
27 ]
Chris Banesaf26d9f2015-01-20 19:13:52 +000028 }
Griff Hazen43227bb2014-05-28 07:59:33 -070029}
30
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080031supportLibrary {
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070032 name 'Android Support Library core utils'
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080033 inceptionYear '2011'
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070034 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 -080035}