mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00

We currently pause playback to prevent further progress while the app thread runs assertion and triggers additional actions. This is not ideal because we do not actually want to pause playback in almost all cases where this method used. This can be improved by keeping the playback thread blocked and only unblock it the next time the app thread waits for the player (either via RobolectricUtil methods or by blocking the thread itself). To add this automatic handling, this change introduces a new util class for the tests that can keep the list of waiting threads statically (because the access to this logic is spread across multiple independent classes). PiperOrigin-RevId: 589784204
ExoPlayer module
This module provides ExoPlayer
, the Player
implementation for local media
playback on Android.
Getting the module
The easiest way to get the module is to add it as a gradle dependency:
implementation 'androidx.media3:media3-exoplayer:1.X.X'
where 1.X.X
is the version, which must match the version of the other media
modules being used.
Alternatively, you can clone this GitHub project and depend on the module locally. Instructions for doing this can be found in the top level README.