From 2250ffe6c8c5fa6b5bc728cd7a9fa075bcbb04d9 Mon Sep 17 00:00:00 2001 From: tonihei Date: Thu, 6 Jul 2023 09:45:11 +0100 Subject: [PATCH] Change multidex dependency type to androidTestImplementation This is only needed for instrumentation tests and should not be included in regular builds. #minor-release Issue: androidx/media#499 PiperOrigin-RevId: 545913113 --- RELEASENOTES.md | 2 ++ common_library_config.gradle | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index ea7dc48d12..5672cce75e 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -13,6 +13,8 @@ and nullable array element types are not detected as nullable. Examples are `TrackSelectorResult` and `SimpleDecoder` method parameters ([6792](https://github.com/google/ExoPlayer/issues/6792)). + * Remove accidentally added `multidex` dependency from all modules + ([#499](https://github.com/androidx/media/issues/499)). * ExoPlayer: * Add suppression of playback on unsuitable audio output devices (e.g. the built-in speaker on Wear OS devices) when this feature is enabled via diff --git a/common_library_config.gradle b/common_library_config.gradle index b2f7afab0d..7dee4b3d20 100644 --- a/common_library_config.gradle +++ b/common_library_config.gradle @@ -43,6 +43,6 @@ android { } dependencies { - implementation 'androidx.multidex:multidex:' + androidxMultidexVersion + androidTestImplementation 'androidx.multidex:multidex:' + androidxMultidexVersion coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' }