Created
March 14, 2023 17:17
-
-
Save ademirqueiroga/cba7ae9ac0c3efb3ebc5df106c070413 to your computer and use it in GitHub Desktop.
MediaSession supported actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun mediaSessionSupportedActions(): Long { | |
return PlaybackStateCompat.ACTION_PAUSE xor | |
PlaybackStateCompat.ACTION_PLAY xor | |
PlaybackStateCompat.ACTION_PLAY_PAUSE xor | |
PlaybackStateCompat.ACTION_REWIND xor | |
PlaybackStateCompat.ACTION_FAST_FORWARD xor | |
PlaybackStateCompat.ACTION_SKIP_TO_NEXT xor | |
PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment