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    compileOnly project(':fragment')
13
14    androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
15    androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
16    androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
17    androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
18    androidTestImplementation(project(":legacy-support-v4"))
19    androidTestImplementation(project(":appcompat"))
20}
21
22android {
23    buildTypes.all {
24        consumerProguardFiles 'proguard-rules.pro'
25    }
26
27    aaptOptions {
28        additionalParameters "--no-version-transitions"
29    }
30}
31
32supportLibrary {
33    name = "Android Transition Support Library"
34    publish = true
35    mavenVersion = LibraryVersions.SUPPORT_LIBRARY
36    mavenGroup = LibraryGroups.TRANSITION
37    inceptionYear = "2016"
38    description = "Android Transition Support Library"
39    failOnDeprecationWarnings = false
40}
41