blob: 06774fdc248433cd05f2569fc9074649236f0217 [file] [log] [blame]
Aurimas Liutikasca04e9a2017-08-23 21:19:51 -07001apply plugin: android.support.SupportAndroidLibraryPlugin
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08002
Alan Viverette9439d702016-10-25 14:45:10 +01003dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07004 api project(':support-annotations')
5 api project(':support-v4')
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -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
Alan Viverette9439d702016-10-25 14:45:10 +010011}
Justin Klaassen68e7adb2016-01-21 12:50:47 -080012
Yigit Boyar5932b6f2014-04-30 13:43:59 -070013android {
Yigit Boyar5932b6f2014-04-30 13:43:59 -070014 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080015 minSdkVersion 14
Yigit Boyar5932b6f2014-04-30 13:43:59 -070016 }
17
Yigit Boyar5932b6f2014-04-30 13:43:59 -070018 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010019 main.java.srcDirs = [
Alan Viverette9439d702016-10-25 14:45:10 +010020 'java'
21 ]
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080022 }
Yigit Boyar5932b6f2014-04-30 13:43:59 -070023}
24
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080025supportLibrary {
26 name 'Android Support Library v13'
Aurimas Liutikase1f39f02017-08-23 17:59:58 -070027 publish true
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080028 inceptionYear '2011'
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070029 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 -080030}