Hello,
I’m using in app browser, it works fine on Android, however, in iOS 12 it will open as a blank webpage.
openWebPage() {
const options: InAppBrowserOptions = {
clearcache: 'yes',
clearsessioncache: 'yes'
}
const browser = this.inAppBrowser.create("https://ionicframework.com", '_blank', options);
}
in the config file i have the below
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
anyone can help me with this issue?