blob: 9b67ad2c0942181c572016830a7019a98f11e3df [file] [log] [blame]
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)
androidTestImplementation(ESPRESSO_CORE)
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"
}