feat(android): record play-intent on remote play/pause

This commit is contained in:
2026-06-06 17:29:36 -04:00
parent 5f5ab69da6
commit 8a3104443c
@@ -172,6 +172,7 @@ class MinstrelForwardingPlayer(
if (active == null) {
super.play()
} else {
remoteState.setPlayIntent(true)
scope.launch {
runCatching { active.avTransport.play() }
.onSuccess {
@@ -193,6 +194,7 @@ class MinstrelForwardingPlayer(
if (active == null) {
super.pause()
} else {
remoteState.setPlayIntent(false)
scope.launch {
runCatching { active.avTransport.pause() }
.onSuccess {