blob: cdf313eeda12da04475481eec0b7a3d6a68095bc [file] [log] [blame]
Dongwon Kang83178b72017-01-16 15:09:25 -08001apply 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 compileSdkVersion project.ext.currentSdk
14
15 defaultConfig {
16 minSdkVersion 21
17 }
18
19 sourceSets {
20 main.java.srcDirs = ['src']
21 main.res.srcDir 'res'
22 }
23}
24
Aurimas Liutikas5c76d902017-01-26 10:07:58 -080025supportLibrary {
26 name 'Android Support TV Provider'
27 inceptionYear '2017'
28 description 'Android Support Library for TV Provider'
29}