Cordova-plugin-inappbrowser Not Opening Links From App To Ios Device Default Browser
Search a lot, but not able to find the correct solution. I am trying to open links from my app to default browser of my IOS device, but its not working. Its perfectly working wit
Solution 1:
Finally, after lot of research and thousand of builds, this post helped me to solve the issue.
with the help of "cordova-plugin-whitelist" plugin. You need to add "gap:" after default-src attribute, your CSP meta. => default-src gap: *;
Thanks StackOverflow.
Solution 2:
I simply use this for my project and confirm it's work
cordova.InAppBrowser.open('https://google.com','_self')
Post a Comment for "Cordova-plugin-inappbrowser Not Opening Links From App To Ios Device Default Browser"