Home | History | Annotate | Download | only in tv-provider
      1 apply plugin: android.support.SupportLibraryPlugin
      2 archivesBaseName = 'support-tv-provider'
      3 
      4 dependencies {
      5     compile project(':support-annotations')
      6     compile project(':support-compat')
      7     androidTestCompile (libs.test_runner) {
      8         exclude module: 'support-annotations'
      9     }
     10 }
     11 
     12 android {
     13     defaultConfig {
     14         minSdkVersion 21
     15     }
     16 
     17     sourceSets {
     18         main.java.srcDirs = ['src']
     19         main.res.srcDir 'res'
     20     }
     21 }
     22 
     23 supportLibrary {
     24     name 'Android Support TV Provider'
     25     inceptionYear '2017'
     26     description 'Android Support Library for TV Provider'
     27 }