blob: 9965d1d77d74fae88314074ea4b2644024ecff70 [file] [log] [blame]
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07001import android.support.LibraryGroups
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -08002import android.support.LibraryVersions
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07003
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07004plugins {
5 id("SupportAndroidLibraryPlugin")
6}
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08007
Alan Viverette9439d702016-10-25 14:45:10 +01008dependencies {
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -08009 api(project(":support-annotations"))
10 api(project(":support-v4"))
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 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010015 main.java.srcDirs = [
Alan Viverette9439d702016-10-25 14:45:10 +010016 'java'
17 ]
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080018 }
Yigit Boyar5932b6f2014-04-30 13:43:59 -070019}
20
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080021supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080022 name = "Android Support Library v13"
23 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080024 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070025 mavenGroup = LibraryGroups.SUPPORT
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080026 inceptionYear = "2011"
27 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."
28 legacySourceLocation = true
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080029}