blob: 09e48df916ff3ab9f6e080b82599572b7b3c5082 [file] [log] [blame]
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api project(":support-media-compat")
api project(":appcompat-v7")
api project(":palette-v7")
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
androidTestImplementation libs.test_rules
}
android {
defaultConfig {
minSdkVersion 14
}
sourceSets {
main.java.srcDirs = [
'jellybean',
'jellybean-mr1',
'jellybean-mr2',
'api24',
'src'
]
main.res.srcDir 'res'
}
}
supportLibrary {
name = "Android MediaRouter Support Library"
publish = true
mavenVersion = LibraryVersions.SUPPORT_LIBRARY
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2013"
description = "Android MediaRouter Support Library"
legacySourceLocation = true
}