When I load the following url in a webview it displays a message saying there was an error instead of showing the controls to play the music. Anyone know how to get it to load correctly in a webview?
Music Stream
www.churchofjesuschrist.org
B4X:
Sub Globals
Dim WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
WebView1.Initialize("WebView1_Click")
Activity.LoadLayout("WebView")
WebView1.LoadURL("https://www.churchofjesuschrist.org/media/radio/music-stream?lang=eng")
End Sub