fix(android): fix android notification controller order (#4002)

This commit is contained in:
YangJH
2024-07-15 17:14:31 +09:00
committed by GitHub
parent 38bcfa2f6a
commit 05623c9f54

View File

@@ -58,7 +58,7 @@ class VideoPlaybackService : MediaSessionService() {
val mediaSession = MediaSession.Builder(this, player)
.setId("RNVideoPlaybackService_" + player.hashCode())
.setCallback(VideoPlaybackCallback())
.setCustomLayout(immutableListOf(seekBackwardBtn, seekForwardBtn))
.setCustomLayout(immutableListOf(seekForwardBtn, seekBackwardBtn))
.build()
mediaSessionsList[player] = mediaSession