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