You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the implementation of the Android 11+ media style notification, the application's (custom) notification icon no longer gets shown in the status bar.
The text was updated successfully, but these errors were encountered:
I start and refresh MusicControls.create with isPlaying with false.
So when I change cover or song information, musiccontrol pass Play to Stop and notification disapear.
So I store in variable, when I start, play, pause status of isPlaying
// Begin
var isPlayingStatus = false;
// Play
isPlayingStatus = true;
// MediaError
// Stop
isPlayingStatus = false;
// Refresh and create MusicControl
MusicControls.create({
...
isPlaying : isPlayingStatus,
....
}, this.MusicControllerSuccess, this.MusicControllerError);
With the implementation of the Android 11+ media style notification, the application's (custom) notification icon no longer gets shown in the status bar.
The text was updated successfully, but these errors were encountered: