blob: 88e0bc0a1bec70be08c881aaa4ada2f7060754f6 [file] [log] [blame]
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -08001import static android.support.dependencies.DependenciesKt.*
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07002import android.support.LibraryGroups
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -08003import android.support.LibraryVersions
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07004
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07005plugins {
6 id("SupportAndroidLibraryPlugin")
7}
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08008
Alan Viverette9439d702016-10-25 14:45:10 +01009dependencies {
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080010 api(project(":support-annotations"))
11 api(project(":support-v4"))
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -080012
Jake Wharton66807fc2017-12-05 14:44:35 -050013 androidTestImplementation(TEST_RUNNER)
14 androidTestImplementation(ESPRESSO_CORE)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080015 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
16 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
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 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010021 main.java.srcDirs = [
Alan Viverette9439d702016-10-25 14:45:10 +010022 'java'
23 ]
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080024 }
Yigit Boyar5932b6f2014-04-30 13:43:59 -070025}
26
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080027supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080028 name = "Android Support Library v13"
29 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080030 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070031 mavenGroup = LibraryGroups.SUPPORT
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080032 inceptionYear = "2011"
33 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."
34 legacySourceLocation = true
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080035}