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(":core"))
11    api(project(":annotation"))
12    api(project(":interpolator"))
13    api(project(":collection"))
14    api(project(":legacy-support-core-ui"))
15
16    androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
17    androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
18    androidTestImplementation(project(":internal-testutils"))
19}
20
21supportLibrary {
22    name = "Android Support Custom Tabs"
23    publish = true
24    mavenVersion = LibraryVersions.SUPPORT_LIBRARY
25    mavenGroup = LibraryGroups.BROWSER
26    inceptionYear = "2015"
27    description = "Android Support Custom Tabs"
28    minSdkVersion = 15
29}
30