0
votes

I have a cordova project that is being compiled for both Android and iOS. I have some links in it that open a website in the system browser, e.g.:

window.open('https://example.com', '_system');
cordova.InAppBrowser.open('httos://example.com', '_system');

This works fine on Android, however nothing happens on iOS, not even '_blank'.

I also tried adding the inappbrowser plugin (https://github.com/apache/cordova-plugin-inappbrowser) like others recommended, but nothing changed when I implemented that.

Any ideas on how to open links in the system browser on iOS? Every source on google just says add the inappbrowser plugin, or to just use '_system' (but that's what I've been doing!).

I don't believe it to be an issue with my whitelist, since it works fine on android, and my app can load resources fine from the internet on iOS as well. Everything works except for opening links on iOS.

UPDATE: calling cordova.InAppBrowser.open() works when called from the onDeviceReady event, but doesn't work outside of the event. I even tried setting window.open, but that didn't work.

2
show your code. Also, try with cordova.InAppBrowser.open instead of `window.open``jcesarmobile
I've already tried doing that, nothing works. And ok, I updated my question with that example.TheRyan722
It appears to be an issue with cordova, and I'm not sure how to fix it. If I call cordova.InAppBrowser.open() from inside the ondeviceready event, it works, but outside of that, it doesn't.TheRyan722

2 Answers

0
votes

After some ruthless digging on some forums, I found this post on the ionic forums: https://forum.ionicframework.com/t/cordova-inappbrowser-plugin-stopped-working-in-ios-10/64361/9

By changing my content security policy to:

<meta http-equiv="Content-Security-Policy" content="img-src * 'self' data:; default-src * 'self' gap: wss: ws: ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval';">

It worked! I would however like to better understand why this CSP works as opposed to the commonly recommend 'gap://ready' that everyone says to use.

0
votes

Finally fixed the issue by setting preferences to the iOS in config.xml

 preference name="WKPort" value="8080"
 preference name="UseScheme" value="false"

specifically set theses preference for iOS.

UseScheme = false is indeed a BAD idea but its the only way to work around the issue today.