blob: 55fe2bbab0188078c5e8e7a7e51428deb2b5974f [file] [log] [blame]
Aurimas Liutikasca04e9a2017-08-23 21:19:51 -07001apply plugin: android.support.SupportAndroidLibraryPlugin
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 }
Griff Hazen43227bb2014-05-28 07:59:33 -070017}
18
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080019supportLibrary {
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070020 name 'Android Support Library core utils'
Aurimas Liutikase1f39f02017-08-23 17:59:58 -070021 publish true
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080022 inceptionYear '2011'
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070023 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 -080024}