MediaSession supported actions
This file contains 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