mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +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.google.guava:guava:' + guavaVersion
|
||||||
androidTestImplementation 'com.linkedin.dexmaker:dexmaker:' + dexmakerVersion
|
androidTestImplementation 'com.linkedin.dexmaker:dexmaker:' + dexmakerVersion
|
||||||
androidTestImplementation 'com.linkedin.dexmaker:dexmaker-mockito:' + dexmakerVersion
|
androidTestImplementation 'com.linkedin.dexmaker:dexmaker-mockito:' + dexmakerVersion
|
||||||
androidTestImplementation(project(modulePrefix + 'testutils')) {
|
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||||
exclude module: gradle.ext.exoplayerModulePrefix + 'library-core'
|
androidTestImplementation(project(modulePrefix + 'testutils')) {
|
||||||
|
exclude module: gradle.ext.exoplayerModulePrefix + 'library-core'
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
androidTestImplementation project(modulePrefix + 'testutils')
|
||||||
}
|
}
|
||||||
testImplementation 'com.google.guava:guava:' + guavaVersion
|
testImplementation 'com.google.guava:guava:' + guavaVersion
|
||||||
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
|
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue