Skip to content Skip to sidebar Skip to footer

Cordova/phonegap Load External Site In Main Cordova Webview

What i want I have external web-resource that i want cordova webview to simple open and be able to navigate through its inner navigation. Description InAppBrowser docs said The In

Solution 1:

Solved this issue using following rules on both ios and android:

<access origin="*" />
<allow-navigation href="*" />
<allow-navigation href="http://*/*" />
<allow-navigation href="https://*/*" />
<allow-navigation href="tel:*" />
<allow-navigation href="sms:*" />
<allow-navigation href="mailto:*" />
<allow-navigation href="geo:*" />

If you stuck on same problem you also need to know following:


Post a Comment for "Cordova/phonegap Load External Site In Main Cordova Webview"