blob: f2ebd4327643a99dd415a521c183589380f0b090 [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 Liutikas2ffc5792018-02-09 17:17:47 -08004
5plugins {
6 id("SupportAndroidLibraryPlugin")
7}
8
9dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080010 api(project(":annotation"))
11 api(project(":core"))
Aurimas Liutikas2ffc5792018-02-09 17:17:47 -080012
13 androidTestImplementation(JUNIT)
Filip Pavlisa8792942018-03-08 21:01:59 +000014 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
15 androidTestImplementation(TEST_RULES_TMP, libs.exclude_for_espresso)
Aurimas Liutikas2ffc5792018-02-09 17:17:47 -080016}
17
18supportLibrary {
19 name = "Android Support Library Custom View"
20 publish = true
21 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080022 mavenGroup = LibraryGroups.CUSTOMVIEW
Aurimas Liutikas2ffc5792018-02-09 17:17:47 -080023 inceptionYear = "2018"
24 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 Liutikasbfef0932018-04-04 13:25:38 -070025 failOnDeprecationWarnings = false
Aurimas Liutikas2ffc5792018-02-09 17:17:47 -080026}