Gab309 commented on issue #975: URL: https://github.com/apache/cordova-ios/issues/975#issuecomment-718199059
Could be the same problem as in https://github.com/ionic-team/ionic-cli/issues/3218. As already mentioned by @breautek you should look for javascript errors. Try to [use the Web Inspector of Safari to debug on your Iphone](https://www.browserstack.com/guide/how-to-debug-on-iphone). Do not forget to reload the app via the Web Inspector (button top left) _"to see javascript errors that occur on startup"_. If your output looks somewhat like the following ``` [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (runtime.js, line 0) [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (cordova.js, line 0) [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (polyfills.js, line 0) [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (styles.js, line 0) [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (vendor.js, line 0) [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (main.js, line 0) ``` you should try to run ``` cordova plugin rm cordova-plugin-ionic-webview cordova plugin add cordova-plugin-ionic-webview@latest ``` to resolve the issue of the blank screen. This solution was suggested [here](https://github.com/ionic-team/ionic-cli/issues/3218#issuecomment-424927465), you should check it out for more details. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
