Skip to content

Commit

Permalink
fix(android): fix android notification controller order (#4002)
Browse files Browse the repository at this point in the history
  • Loading branch information
YangJonghun authored Jul 15, 2024
1 parent 38bcfa2 commit 05623c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 05623c9

Please sign in to comment.