App is crashing and I'm not sure why. Please help?
Error: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=HTTP://www.oceanmedia.net/... flg=0x20000 }
The wierd thing is it only crashes when I tap on the last banner. None of the others. I checked, and the URL is there and goes to a valid domain.
Full project is here: https://www.dropbox.com/s/mnh0r1pagt069ss/Nutshell-02.zip?dl=0
Error: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=HTTP://www.oceanmedia.net/... flg=0x20000 }
The wierd thing is it only crashes when I tap on the last banner. None of the others. I checked, and the URL is there and goes to a valid domain.
B4X:
Sub BrowseURL(myURL As String)
Log("arrived at BrowseURL function")
Dim p As PhoneIntents
Log("set p as phoneintents")
Log("URL=" & myURL)
'error on line below
StartActivity(p.OpenBrowser(myURL))
'error on line above
Log("after BrowseURL StartActivity")
'Activity.finish
End Sub
Full project is here: https://www.dropbox.com/s/mnh0r1pagt069ss/Nutshell-02.zip?dl=0