blob: 261bb70c327f25b8715cdbbf5feeb0f79bbe418d [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08002archivesBaseName = 'support-v13'
3
Alan Viverette9439d702016-10-25 14:45:10 +01004dependencies {
5 compile project(':support-annotations')
6 compile project(':support-v4')
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -08007
Aurimas Liutikasf09d8582017-01-20 21:49:51 -08008 androidTestCompile (libs.test_runner) {
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -08009 exclude module: 'support-annotations'
10 }
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080011 androidTestCompile (libs.espresso_core) {
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -080012 exclude module: 'support-annotations'
13 }
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080014 androidTestCompile libs.mockito_core
15 androidTestCompile libs.dexmaker
16 androidTestCompile libs.dexmaker_mockito
Alan Viverette9439d702016-10-25 14:45:10 +010017}
Justin Klaassen68e7adb2016-01-21 12:50:47 -080018
Yigit Boyar5932b6f2014-04-30 13:43:59 -070019android {
Yigit Boyar5932b6f2014-04-30 13:43:59 -070020 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080021 minSdkVersion 14
Yigit Boyar5932b6f2014-04-30 13:43:59 -070022 }
23
Yigit Boyar5932b6f2014-04-30 13:43:59 -070024 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010025 main.java.srcDirs = [
Alan Viverette9439d702016-10-25 14:45:10 +010026 'java'
27 ]
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080028 }
Yigit Boyar5932b6f2014-04-30 13:43:59 -070029}
30
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080031supportLibrary {
32 name 'Android Support Library v13'
33 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}