Slavrix commented on issue #1631: URL: https://github.com/apache/cordova-ios/issues/1631#issuecomment-4036046129
I had this issue also. What I found was that the root cause looked to be the `decidePolicyForNavigationAction:` was cancelling the `ionic://localhost` navigation because `defaultResourcePolicyForURL:` only allowed `file:// URL`s. The scheme handler never fired because the navigation was rejected before it could reach the handler. The config.xml has `<allow-navigation href=\"*\" />` which should allow all navigations but doesn't seem to work due to the method signature mismatch between cordova-ios 8 and the Ionic WebView plugin maybe? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
