blob: 05a91df8ef6d4ae48ce90830192ff3b5a28c2ed4 [file] [log] [blame]
import static android.support.dependencies.DependenciesKt.*
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":support-compat"))
api(project(":support-core-ui"))
api(project(":support-media-compat"))
api(project(":support-fragment"))
api(project(":recyclerview-v7"))
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
}
android {
sourceSets {
main.java.srcDirs = [
'common',
'jbmr2',
'kitkat',
'api21',
'src'
]
main.res.srcDir 'res'
}
}
supportLibrary {
name = "Android Support Leanback v17"
publish = true
mavenVersion = LibraryVersions.SUPPORT_LIBRARY
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2014"
description = "Android Support Leanback v17"
legacySourceLocation = true
minSdkVersion = 17
}