| import androidx.build.LibraryGroups |
| import androidx.build.LibraryVersions |
| |
| plugins { |
| id("SupportAndroidLibraryPlugin") |
| } |
| |
| dependencies { |
| api(project(":collection")) |
| api(project(":appcompat")) |
| api(project(":recyclerview")) |
| api(project(":preference")) |
| api(project(":leanback")) |
| } |
| |
| android { |
| defaultConfig { |
| minSdkVersion 21 |
| } |
| |
| sourceSets { |
| main.java.srcDirs += [ |
| 'api21' |
| ] |
| } |
| } |
| |
| supportLibrary { |
| name = "Android Support Leanback Preference v17" |
| publish = true |
| mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
| mavenGroup = LibraryGroups.LEANBACK |
| inceptionYear = "2015" |
| description = "Android Support Leanback Preference v17" |
| failOnDeprecationWarnings = false |
| } |