| Aurimas Liutikas | 526389b | 2018-02-27 14:01:24 -0800 | [diff] [blame] | 1 | import static androidx.build.dependencies.DependenciesKt.* |
| 2 | import androidx.build.LibraryGroups |
| 3 | import androidx.build.LibraryVersions |
| Aurimas Liutikas | 2ffc579 | 2018-02-09 17:17:47 -0800 | [diff] [blame] | 4 | |
| 5 | plugins { |
| 6 | id("SupportAndroidLibraryPlugin") |
| 7 | } |
| 8 | |
| 9 | dependencies { |
| Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 10 | api(project(":annotation")) |
| 11 | api(project(":core")) |
| Aurimas Liutikas | 2ffc579 | 2018-02-09 17:17:47 -0800 | [diff] [blame] | 12 | |
| 13 | androidTestImplementation(JUNIT) |
| Filip Pavlis | a879294 | 2018-03-08 21:01:59 +0000 | [diff] [blame] | 14 | androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso) |
| 15 | androidTestImplementation(TEST_RULES_TMP, libs.exclude_for_espresso) |
| Aurimas Liutikas | 2ffc579 | 2018-02-09 17:17:47 -0800 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | supportLibrary { |
| 19 | name = "Android Support Library Custom View" |
| 20 | publish = true |
| 21 | mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
| Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 22 | mavenGroup = LibraryGroups.CUSTOMVIEW |
| Aurimas Liutikas | 2ffc579 | 2018-02-09 17:17:47 -0800 | [diff] [blame] | 23 | 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 Liutikas | bfef093 | 2018-04-04 13:25:38 -0700 | [diff] [blame] | 25 | failOnDeprecationWarnings = false |
| Aurimas Liutikas | 2ffc579 | 2018-02-09 17:17:47 -0800 | [diff] [blame] | 26 | } |