| 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 | 368a8e5 | 2018-02-13 09:55:20 -0800 | [diff] [blame] | 4 | |
| 5 | plugins { |
| 6 | id("SupportAndroidLibraryPlugin") |
| 7 | } |
| 8 | |
| 9 | dependencies { |
| Oussama Ben Abdelbaki | 237c894 | 2019-02-11 15:57:21 -0500 | [diff] [blame] | 10 | api(project(":annotation")) |
| Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 11 | api(project(":core")) |
| Nick Anthony | d9ca300 | 2018-11-13 13:34:52 -0500 | [diff] [blame] | 12 | api("androidx.interpolator:interpolator:1.0.0") |
| Aurimas Liutikas | 368a8e5 | 2018-02-13 09:55:20 -0800 | [diff] [blame] | 13 | |
| 14 | androidTestImplementation(JUNIT) |
| Alan Viverette | badf2f8 | 2018-12-18 12:14:10 -0500 | [diff] [blame] | 15 | androidTestImplementation(TEST_EXT_JUNIT) |
| 16 | androidTestImplementation(TEST_CORE) |
| Aurimas Liutikas | 3f9ceb6 | 2018-07-10 11:57:16 -0700 | [diff] [blame] | 17 | androidTestImplementation(TEST_RUNNER) |
| 18 | androidTestImplementation(TEST_RULES) |
| 19 | androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso) |
| 20 | androidTestImplementation(ESPRESSO_CONTRIB, libs.exclude_for_espresso) |
| Aurimas Liutikas | 368a8e5 | 2018-02-13 09:55:20 -0800 | [diff] [blame] | 21 | androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| 22 | androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| Aurimas Liutikas | 67171c8 | 2018-02-27 13:10:25 -0800 | [diff] [blame] | 23 | androidTestImplementation project(':internal-testutils'), { |
| Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 24 | exclude group: 'androidx.swiperefreshlayout', module: 'swiperefreshlayout' |
| Aurimas Liutikas | 368a8e5 | 2018-02-13 09:55:20 -0800 | [diff] [blame] | 25 | } |
| 26 | } |
| 27 | |
| 28 | supportLibrary { |
| 29 | name = "Android Support Library Custom View" |
| 30 | publish = true |
| shepshapard | 8118725 | 2018-07-11 11:08:49 -0700 | [diff] [blame] | 31 | mavenVersion = LibraryVersions.SWIPE_REFRESH_LAYOUT |
| Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 32 | mavenGroup = LibraryGroups.SWIPEREFRESHLAYOUT |
| Aurimas Liutikas | 368a8e5 | 2018-02-13 09:55:20 -0800 | [diff] [blame] | 33 | inceptionYear = "2018" |
| 34 | 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." |
| 35 | } |