Hello,
I am currently using a webview to play mp3 audio files loaded from a server. This works well in testing on my mac, but not when I export a HTML5 version of the app. It seems to me that in the HTML5 version of the app, webview doesn’t work at all? The webview isn’t even visible and the app crashes whenever a webview is being attempted to be opened. Is this a known issue?
Is there a way around this? Another way to play mp3 files located on a server?
This is the code html I’m loading into the webview, using webview.open_raw(webview_id, audioplayerhtmlcode)
> <html><body><center>
> <audio src="audiofilelink" autoplay>
> Your browser does not support the <code>audio</code> element.
> </audio>
> </center></body></html>