Home | History | Annotate | Download | only in mediarouter
      1 apply plugin: android.support.SupportAndroidLibraryPlugin
      2 
      3 dependencies {
      4     api project(":support-media-compat")
      5     api project(":appcompat-v7")
      6     api project(":palette-v7")
      7 
      8     androidTestImplementation libs.test_runner,   { exclude module: 'support-annotations' }
      9     androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
     10     androidTestImplementation libs.test_rules
     11 }
     12 
     13 android {
     14     defaultConfig {
     15         minSdkVersion 14
     16     }
     17 
     18     sourceSets {
     19         main.java.srcDirs = [
     20                 'jellybean',
     21                 'jellybean-mr1',
     22                 'jellybean-mr2',
     23                 'api24',
     24                 'src'
     25         ]
     26         main.res.srcDir 'res'
     27     }
     28 }
     29 
     30 supportLibrary {
     31     name 'Android MediaRouter Support Library'
     32     publish true
     33     inceptionYear '2013'
     34     description 'Android MediaRouter Support Library'
     35 }
     36