I have a fitness app that guides users through a workout, but in order to do that, the app must remain active even while in the background. Specifically, this is crucial with our new audio release, which guides the user through their workout using audio cues that cut in and out. Currently, I'm using TriggerIO's implementation to play audio which also allows background audio, but only continues background execution until the audio file finishes. Additionally, I will soon replace that with a native plugin that includes background-music ducking.
Is there a way for me to continue running my HTML5 app in the background after an audio file finishes playing?
Thanks.