| import static androidx.build.dependencies.DependenciesKt.* |
| import androidx.build.LibraryGroups |
| import androidx.build.LibraryVersions |
| |
| plugins { |
| id("SupportAndroidLibraryPlugin") |
| } |
| |
| dependencies { |
| api(project(":annotation")) |
| api(project(":core")) |
| compileOnly project(':fragment') |
| |
| androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso) |
| androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso) |
| androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation(project(":legacy-support-v4")) |
| androidTestImplementation(project(":appcompat")) |
| } |
| |
| android { |
| buildTypes.all { |
| consumerProguardFiles 'proguard-rules.pro' |
| } |
| |
| aaptOptions { |
| additionalParameters "--no-version-transitions" |
| } |
| } |
| |
| supportLibrary { |
| name = "Android Transition Support Library" |
| publish = true |
| mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
| mavenGroup = LibraryGroups.TRANSITION |
| inceptionYear = "2016" |
| description = "Android Transition Support Library" |
| failOnDeprecationWarnings = false |
| } |