| import static androidx.build.dependencies.DependenciesKt.* |
| import androidx.build.LibraryGroups |
| import androidx.build.LibraryVersions |
| import androidx.build.Publish |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| } |
| |
| dependencies { |
| api(project(":media")) |
| implementation("androidx.appcompat:appcompat:1.0.2") |
| implementation("androidx.palette:palette:1.0.0") |
| implementation("androidx.recyclerview:recyclerview:1.0.0") |
| |
| androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT) |
| androidTestImplementation(ANDROIDX_TEST_CORE) |
| androidTestImplementation(ANDROIDX_TEST_RUNNER) |
| androidTestImplementation(ANDROIDX_TEST_RULES) |
| androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso) |
| } |
| |
| android { |
| sourceSets { |
| main.java.srcDirs += [ |
| 'jellybean', |
| 'jellybean-mr1', |
| 'jellybean-mr2', |
| 'api24' |
| ] |
| } |
| |
| buildTypes.all { |
| consumerProguardFiles 'proguard-rules.pro' |
| } |
| } |
| |
| androidx { |
| name = "Android MediaRouter Support Library" |
| publish = Publish.SNAPSHOT_AND_RELEASE |
| mavenVersion = LibraryVersions.MEDIAROUTER |
| mavenGroup = LibraryGroups.MEDIAROUTER |
| inceptionYear = "2013" |
| description = "Android MediaRouter Support Library" |
| failOnDeprecationWarnings = false |
| } |