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
Media3 pre-release (alpha, beta or RC not in this list)
More version details
Hi,
I am using MediaSessionService and MediaControllers.
While on 1.6.0-alpha03 and previous versions, clearMediaItems() also cleared the notification.
While on 1.6.0-beta01 and later versions, clearMediaItems() doesn't clear it.
I did a little investigation and I found that this commit is causing the issue.
Devices that reproduce the issue
Any Android device
Reproducible in the demo app?
Yes
Reproduction steps
In demo-session app change this line in MainActivity.kt:78
browser?.sessionActivity?.send()
To
browser?.clearMediaItems()
Now, CURRENT PLAYLIST button on the first screen will clear the playlist.
Play some playlist, navigate back, and click this button.
Expected result
The notification will disappear.
Actual result
The notification stays up, but it's not responsive at all.
The text was updated successfully, but these errors were encountered:
We currently combine stopping the FGS and optionally removing the
notification in one method, which unnecessarily gates its logic on
checking the desired foreground state again. This causes a bug where
the notification should be removed (because shouldShowNotification
returns false), but stays visible because the service is allowed
to stay in the foreground and the notification removal code is not
triggered.
#cherrypick
Issue: #2211
PiperOrigin-RevId: 735126704
We currently combine stopping the FGS and optionally removing the
notification in one method, which unnecessarily gates its logic on
checking the desired foreground state again. This causes a bug where
the notification should be removed (because shouldShowNotification
returns false), but stays visible because the service is allowed
to stay in the foreground and the notification removal code is not
triggered.
Issue: #2211
PiperOrigin-RevId: 735126704
(cherry picked from commit 91ecc16)
Uh oh!
There was an error while loading. Please reload this page.
Version
Media3 pre-release (alpha, beta or RC not in this list)
More version details
Hi,
I am using MediaSessionService and MediaControllers.
While on
1.6.0-alpha03
and previous versions,clearMediaItems()
also cleared the notification.While on
1.6.0-beta01
and later versions,clearMediaItems()
doesn't clear it.I did a little investigation and I found that this commit is causing the issue.
Devices that reproduce the issue
Any Android device
Reproducible in the demo app?
Yes
Reproduction steps
In demo-session app change this line in MainActivity.kt:78
To
Now,
CURRENT PLAYLIST
button on the first screen will clear the playlist.Play some playlist, navigate back, and click this button.
Expected result
The notification will disappear.
Actual result
The notification stays up, but it's not responsive at all.
The text was updated successfully, but these errors were encountered: