blob: 4ebec71a61d5ea77f3e214f8cf091983fd048127 [file] [log] [blame]
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 libs.test_runner, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
}
android {
defaultConfig {
minSdkVersion 17
}
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
}