jcesarmobile commented on issue #957: URL: https://github.com/apache/cordova-ios/issues/957#issuecomment-665709943
cordova-ios 6 integrated the splash screen plugin into the platform, so if you were using ionic-native to hide the splash, it won't work because it relies in the plugin and the plugin is not installed on iOS. Change `this.splashScreen.hide();` to `(navigator as any).splashscreen.hide();` in `app.component.ts`(or wherever you have `this.splashScreen.hide();`) ---------------------------------------------------------------- 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]
