mirror of
https://github.com/samsonjs/media.git
synced 2026-04-05 11:15:46 +00:00
Check if exoplayerModulePrefix is set
This commit is contained in:
parent
2555fb36b4
commit
d24f37cdd7
1 changed files with 6 additions and 2 deletions
|
|
@ -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…
Reference in a new issue