blob: a0086f462345ed1a77869eed618fba9e168a15c8 [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 Liutikas368a8e52018-02-13 09:55:20 -08004
5plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01006 id("AndroidXPlugin")
7 id("com.android.library")
Aurimas Liutikas368a8e52018-02-13 09:55:20 -08008}
9
10dependencies {
Oussama Ben Abdelbaki237c8942019-02-11 15:57:21 -050011 api(project(":annotation"))
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080012 api(project(":core"))
Nick Anthonyd9ca3002018-11-13 13:34:52 -050013 api("androidx.interpolator:interpolator:1.0.0")
Aurimas Liutikas368a8e52018-02-13 09:55:20 -080014
15 androidTestImplementation(JUNIT)
Dustin Lam3979d962019-04-08 10:40:19 -070016 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
17 androidTestImplementation(ANDROIDX_TEST_CORE)
18 androidTestImplementation(ANDROIDX_TEST_RUNNER)
19 androidTestImplementation(ANDROIDX_TEST_RULES)
Aurimas Liutikas3f9ceb62018-07-10 11:57:16 -070020 androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
21 androidTestImplementation(ESPRESSO_CONTRIB, libs.exclude_for_espresso)
Aurimas Liutikas368a8e52018-02-13 09:55:20 -080022 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 Liutikas67171c82018-02-27 13:10:25 -080024 androidTestImplementation project(':internal-testutils'), {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080025 exclude group: 'androidx.swiperefreshlayout', module: 'swiperefreshlayout'
Aurimas Liutikas368a8e52018-02-13 09:55:20 -080026 }
27}
28
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070029androidx {
Aurimas Liutikas368a8e52018-02-13 09:55:20 -080030 name = "Android Support Library Custom View"
31 publish = true
shepshapard81187252018-07-11 11:08:49 -070032 mavenVersion = LibraryVersions.SWIPE_REFRESH_LAYOUT
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080033 mavenGroup = LibraryGroups.SWIPEREFRESHLAYOUT
Aurimas Liutikas368a8e52018-02-13 09:55:20 -080034 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}