blob: 0f11ee5bca11684014032e3c06fa1ae74c0036dd [file] [log] [blame]
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import static androidx.build.dependencies.DependenciesKt.ESPRESSO_CORE
import static androidx.build.dependencies.DependenciesKt.TEST_RULES
import static androidx.build.dependencies.DependenciesKt.TEST_RUNNER
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":media"))
api(project(':versionedparcelable'))
api project(":concurrent:futures")
if (System.getProperties()['idea.platform.prefix'] != null) {
// :media2-exoplayer merges the ExoPlayer JAR into its outputs, but Android Studio can't see
// the symbols, so depend on the JAR directly.
compileOnly fileTree(dir: "media2-exoplayer/src/main/libs",
include: ["exoplayer-core-media2.jar"])
}
// Depend on media2-exoplayer so that the library groupId is set to match media2.
implementation(project(":media2-exoplayer"))
androidTestImplementation(TEST_RUNNER)
androidTestImplementation(TEST_RULES)
androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
androidTestImplementation project(':internal-testutils')
annotationProcessor(project(":versionedparcelable-annotation"))
}
supportLibrary {
name = "AndroidX media2 library"
publish = true
mavenVersion = LibraryVersions.MEDIA2
mavenGroup = LibraryGroups.MEDIA2
inceptionYear = "2018"
description = "Media2"
failOnUncheckedWarnings = false
failOnDeprecationWarnings = false
}