| import static androidx.build.dependencies.DependenciesKt.* |
| import androidx.build.LibraryGroups |
| import androidx.build.LibraryVersions |
| |
| plugins { |
| id("SupportAndroidLibraryPlugin") |
| } |
| |
| dependencies { |
| api(project(":media2")) |
| api(project(":appcompat")) |
| api(project(":palette")) |
| api(project(":recyclerview")) |
| |
| androidTestImplementation(TEST_RUNNER) |
| androidTestImplementation(TEST_RULES) |
| androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso) |
| } |
| |
| android { |
| sourceSets { |
| main.java.srcDirs += [ |
| 'jellybean', |
| 'jellybean-mr1', |
| 'jellybean-mr2', |
| 'api24' |
| ] |
| } |
| } |
| |
| supportLibrary { |
| name = "Android MediaRouter Support Library" |
| publish = true |
| mavenVersion = LibraryVersions.MEDIAROUTER |
| mavenGroup = LibraryGroups.MEDIAROUTER |
| inceptionYear = "2013" |
| description = "Android MediaRouter Support Library" |
| failOnUncheckedWarnings = false |
| failOnDeprecationWarnings = false |
| } |