blob: 23146c9294ba75d346f605d4d49f9a0bc13d0121 [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 {
Dongwon Kang83178b72017-01-16 15:09:25 -080013 defaultConfig {
14 minSdkVersion 21
15 }
16
17 sourceSets {
18 main.java.srcDirs = ['src']
19 main.res.srcDir 'res'
20 }
21}
22
Aurimas Liutikas5c76d902017-01-26 10:07:58 -080023supportLibrary {
24 name 'Android Support TV Provider'
25 inceptionYear '2017'
26 description 'Android Support Library for TV Provider'
Conrad Chen8d9808c2017-03-14 18:03:07 -070027}