Hey there,
I’m using the JS code supplied in the PDF, and the bridge supplied with the plugin to open urls from the inline browser to and external one.
I’m passing a url to the “sendMessageToUnity” function:
sendMessageToUnity('https://www.google.com');
and open it in an external browser:
void OnMessageFromJS(string jsMessage) {
Application.openURL(jsMessage)
}
it works perfectly fine on Android, but it doesn’t with iOS. I see a debug message from onJSMessage, but it shows the https without the “:”
https//www.google.com
is this only a bug in the loggins? and if so, any reason why it doesn’t open a new browser on iOS?
Thanks!