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