1 apply plugin: android.support.SupportLibraryPlugin 2 archivesBaseName = 'mediarouter-v7' 3 4 dependencies { 5 compile project(":support-appcompat-v7") 6 compile project(":support-palette-v7") 7 8 androidTestCompile libs.test_runner 9 } 10 11 android { 12 defaultConfig { 13 minSdkVersion 14 14 } 15 16 sourceSets { 17 main.java.srcDirs = [ 18 'jellybean', 19 'jellybean-mr1', 20 'jellybean-mr2', 21 'api24', 22 'src' 23 ] 24 main.res.srcDir 'res' 25 } 26 } 27 28 supportLibrary { 29 name 'Android MediaRouter Support Library' 30 inceptionYear '2013' 31 description 'Android MediaRouter Support Library' 32 } 33