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
13    androidTestImplementation(JUNIT)
14    androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
15    androidTestImplementation(TEST_RULES_TMP, libs.exclude_for_espresso)
16}
17
18supportLibrary {
19    name = "Android Support Library Custom View"
20    publish = true
21    mavenVersion = LibraryVersions.SUPPORT_LIBRARY
22    mavenGroup = LibraryGroups.CUSTOMVIEW
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."
25    failOnDeprecationWarnings = false
26}
27