I've built an audioPlayer Capsule that retrieves and plays a playlist of audio from a remote endpoint.
In the simulator and on my Galaxy s9, I can invoke the Capsule & play audio. I can also use the navigation controls to skip forward / go back.
However, in both the simulator & the device, Next
, Previous
, Pause
, Stop
, and Resume
commands are all interpreted as PlayPlaylist
Actions (which passes my playlist to audioPlay.PlayAudio
) and simply start playing the audio from the beginning.
Do I need to hook into or build new Actions to manually trigger these audio control functions? I figured these would be "free" or built-in.
Additionally, I'm trying to figure out how to identify which AudioItem index I'm playing, so I can update the result view.