Please provide a short description of the issue here, along with:
paypal.version from your browser consolePlease provide each individual step required to reproduce the issue
We don't officially support cordova -- if you find any specific root cause, we'll be glad to accept a PR -- but otherwise I'm afraid this isn't likely to get a lot of priority.
Just add
<allow-navigation href="*" />
for ios platform in config.xml and it will render.
Just add
<allow-navigation href="*" />
for ios platform in config.xml and it will render.
Thanks
It worked for me.
As described in cordova-plugin-whitelist, it is not recommended to use the * wildcard to whitelist the whole world.
For a more limited whitelisting that still works, you could use:
<allow-navigation href="about:*" />
<allow-navigation href="https://www.paypal.com/*" />
<allow-navigation href="https://www.paypalobjects.com/*" />
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Just add
<allow-navigation href="*" />for ios platform in config.xml and it will render.