TheRyan722
TheRyan722

Reputation: 1031

Cordova iOS Can't Open Links

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.

Upvotes: 1

Views: 2916

Answers (2)

Expert Suggestion
Expert Suggestion

Reputation: 401

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.

Upvotes: 0

TheRyan722
TheRyan722

Reputation: 1031

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.

Upvotes: 0

Related Questions