1import static androidx.build.dependencies.DependenciesKt.*
2import androidx.build.LibraryGroups
3import androidx.build.LibraryVersions
4
5plugins {
6    id("SupportAndroidLibraryPlugin")
7}
8
9dependencies {
10    api(project(":annotation"))
11    api(project(":core"))
12    api(project(":interpolator"))
13
14    androidTestImplementation(JUNIT)
15    androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
16    androidTestImplementation(TEST_RULES_TMP, libs.exclude_for_espresso)
17    androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
18    androidTestImplementation(ESPRESSO_CONTRIB_TMP, libs.exclude_for_espresso)
19    androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
20    androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
21    androidTestImplementation project(':internal-testutils'), {
22        exclude group: 'androidx.swiperefreshlayout', module: 'swiperefreshlayout'
23    }
24}
25
26supportLibrary {
27    name = "Android Support Library Custom View"
28    publish = true
29    mavenVersion = LibraryVersions.SUPPORT_LIBRARY
30    mavenGroup = LibraryGroups.SWIPEREFRESHLAYOUT
31    inceptionYear = "2018"
32    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."
33}
34