mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Check if exoplayerModulePrefix is set
This commit is contained in:
parent
2555fb36b4
commit
d24f37cdd7
@ -61,8 +61,12 @@ dependencies {
|
||||
androidTestImplementation 'com.google.guava:guava:' + guavaVersion
|
||||
androidTestImplementation 'com.linkedin.dexmaker:dexmaker:' + dexmakerVersion
|
||||
androidTestImplementation 'com.linkedin.dexmaker:dexmaker-mockito:' + dexmakerVersion
|
||||
androidTestImplementation(project(modulePrefix + 'testutils')) {
|
||||
exclude module: gradle.ext.exoplayerModulePrefix + 'library-core'
|
||||
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||
androidTestImplementation(project(modulePrefix + 'testutils')) {
|
||||
exclude module: gradle.ext.exoplayerModulePrefix + 'library-core'
|
||||
}
|
||||
} else {
|
||||
androidTestImplementation project(modulePrefix + 'testutils')
|
||||
}
|
||||
testImplementation 'com.google.guava:guava:' + guavaVersion
|
||||
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
|
||||
|
Loading…
x
Reference in New Issue
Block a user