blob: e9cf2a81433cf56cfc3b2ffb173dd0e4e62e7c7f [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("androidx.interpolator:interpolator:1.0.0")
api(project(":core"))
implementation("androidx.collection:collection:1.0.0")
api("androidx.media:media:1.0.0")
api("androidx.fragment:fragment:1.0.0")
api("androidx.recyclerview:recyclerview: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
}
android {
defaultConfig {
minSdkVersion 17
}
sourceSets {
main.java.srcDirs += [
'common',
'kitkat',
'api21',
]
}
}
supportLibrary {
name = "Android Support Leanback v17"
publish = true
mavenVersion = LibraryVersions.LEANBACK
mavenGroup = LibraryGroups.LEANBACK
inceptionYear = "2014"
description = "Android Support Leanback v17"
failOnUncheckedWarnings = false
failOnDeprecationWarnings = false
}