mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Exclude transitive dependency on core for androidTest
androidTest of core already has the dependency on its main. Without this exclude, gradle complains about type duplication when merging dex saying "Type X is defined multiple times". PiperOrigin-RevId: 302641585
This commit is contained in:
parent
eebe990d20
commit
4e5b2c692f
1 changed files with 3 additions and 1 deletions
|
|
@ -61,7 +61,9 @@ 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')
|
androidTestImplementation(project(modulePrefix + 'testutils')) {
|
||||||
|
exclude module: gradle.ext.exoplayerModulePrefix + 'library-core'
|
||||||
|
}
|
||||||
testImplementation 'com.google.guava:guava:' + guavaVersion
|
testImplementation 'com.google.guava:guava:' + guavaVersion
|
||||||
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
|
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
|
||||||
testImplementation project(modulePrefix + 'testutils')
|
testImplementation project(modulePrefix + 'testutils')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue