Change multidex dependency type to androidTestImplementation

This is only needed for instrumentation tests and should not
be included in regular builds.

Issue: androidx/media#499
PiperOrigin-RevId: 545913113
(cherry picked from commit 2250ffe6c8c5fa6b5bc728cd7a9fa075bcbb04d9)
This commit is contained in:
tonihei 2023-07-06 09:45:11 +01:00 committed by Tianyi Feng
parent 0c6cfea048
commit 9de5684d6e
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,9 @@
### Unreleased changes ### Unreleased changes
* Common Library:
* Remove accidentally added `multidex` dependency from all modules
([#499](https://github.com/androidx/media/issues/499)).
* ExoPlayer: * ExoPlayer:
* Fix issue in `PlaybackStatsListener` where spurious `PlaybackStats` are * Fix issue in `PlaybackStatsListener` where spurious `PlaybackStats` are
created after the playlist is cleared. created after the playlist is cleared.

View File

@ -43,6 +43,6 @@ android {
} }
dependencies { dependencies {
implementation 'androidx.multidex:multidex:' + androidxMultidexVersion androidTestImplementation 'androidx.multidex:multidex:' + androidxMultidexVersion
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
} }