blob: 7b37abe5dd43e35bf36701f9c64135377720b6b0 [file] [log] [blame]
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import static androidx.build.dependencies.DependenciesKt.*
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":annotation"))
api("androidx.core:core:1.0.1")
implementation("androidx.collection:collection:1.0.0")
compileOnly("androidx.fragment:fragment:1.0.0")
androidTestImplementation(TEST_EXT_JUNIT)
androidTestImplementation(TEST_CORE)
androidTestImplementation(TEST_RUNNER)
androidTestImplementation(TEST_RULES)
androidTestImplementation(ESPRESSO_CORE, 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(":appcompat"))
}
android {
buildTypes.all {
consumerProguardFiles 'proguard-rules.pro'
}
aaptOptions {
additionalParameters "--no-version-transitions"
}
}
supportLibrary {
name = "Android Transition Support Library"
publish = true
mavenVersion = LibraryVersions.TRANSITION
mavenGroup = LibraryGroups.TRANSITION
inceptionYear = "2016"
description = "Android Transition Support Library"
failOnDeprecationWarnings = false
trackRestrictedAPIs = false
}