I am using Ionic V3 and trying to open up external URL using InAppBrowser. It works fine in Android but it does not work in iOS.
Below is the code,
this.iab.create(url,’_blank’,‘usewkwebvie=yes’);
Please help me in resolving this !
I am using Ionic V3 and trying to open up external URL using InAppBrowser. It works fine in Android but it does not work in iOS.
Below is the code,
this.iab.create(url,’_blank’,‘usewkwebvie=yes’);
Please help me in resolving this !
I’m afraid you needed the w
Change that.
this.iab.create(url,’_blank’,‘usewkwebvie=yes’);
For this
this.iab.create(url,’_blank’,‘usewkwebview=yes’);
That was a typo while posting the issue here. It doesnt work even with that w.