blob: 8e725806625ddaca301946678d0ce83376f829a3 [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import static androidx.build.dependencies.DependenciesKt.*
2import androidx.build.LibraryGroups
3import androidx.build.LibraryVersions
Aurimas Liutikasd4219a72018-02-08 16:00:17 -08004
5plugins {
6 id("SupportAndroidLibraryPlugin")
7}
8
9dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080010 api(project(":annotation"))
11 api(project(":core"))
Aurimas Liutikasd4219a72018-02-08 16:00:17 -080012 api(project(":customview"))
13
Filip Pavlisa8792942018-03-08 21:01:59 +000014 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
15 androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
16 androidTestImplementation(ESPRESSO_CONTRIB_TMP, libs.exclude_for_espresso)
Aurimas Liutikasd4219a72018-02-08 16:00:17 -080017 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
Aurimas Liutikas67171c82018-02-27 13:10:25 -080018 androidTestImplementation project(':internal-testutils'), {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080019 exclude group: 'androidx.coordinatorlayout', module: 'coordinatorlayout'
Aurimas Liutikasd4219a72018-02-08 16:00:17 -080020 }
21}
22
23android {
24 sourceSets {
25 main.res.srcDirs = [
26 'src/main/res',
27 'src/main/res-public'
28 ]
29 }
30 buildTypes.all {
31 consumerProguardFiles 'proguard-rules.pro'
32 }
33}
34
35supportLibrary {
36 name = "Android Support Library Coordinator Layout"
37 publish = true
38 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080039 mavenGroup = LibraryGroups.COORDINATORLAYOUT
Aurimas Liutikasd4219a72018-02-08 16:00:17 -080040 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 14 or later."
42}