blob: 7bed2ab84425c01226afa03daa3f856fb5ce7eb2 [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
8 androidTestCompile ("com.android.support.test:runner:${project.rootProject.ext.testRunnerVersion}") {
9 exclude module: 'support-annotations'
10 }
11 androidTestCompile ("com.android.support.test.espresso:espresso-core:${project.rootProject.ext.espressoVersion}") {
12 exclude module: 'support-annotations'
13 }
14 androidTestCompile "org.mockito:mockito-core:1.9.5"
15 androidTestCompile "com.google.dexmaker:dexmaker:1.2"
16 androidTestCompile "com.google.dexmaker:dexmaker-mockito:1.2"
Alan Viverette9439d702016-10-25 14:45:10 +010017}
Justin Klaassen68e7adb2016-01-21 12:50:47 -080018
Yigit Boyar5932b6f2014-04-30 13:43:59 -070019android {
Alan Viverette9439d702016-10-25 14:45:10 +010020 compileSdkVersion project.ext.currentSdk
Yigit Boyar5932b6f2014-04-30 13:43:59 -070021
22 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080023 minSdkVersion 14
Yigit Boyar5932b6f2014-04-30 13:43:59 -070024 }
25
Yigit Boyar5932b6f2014-04-30 13:43:59 -070026 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010027 main.java.srcDirs = [
28 'ics',
29 'ics-mr1',
30 'api23',
31 'api24',
32 'api25',
33 'java'
34 ]
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080035 }
Yigit Boyar5932b6f2014-04-30 13:43:59 -070036}
37
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080038supportLibrary {
39 name 'Android Support Library v13'
40 inceptionYear '2011'
41 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 4 or later."
42}
43
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080044uploadArchives {
45 repositories {
46 mavenDeployer {
Xavier Ducrohet855a9222014-01-02 19:00:43 -080047 repository(url: uri(rootProject.ext.supportRepoOut)) {
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080048 }
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080049 }
50 }
51}