tishun commented on issue #157: ios 12 app stuck on splashscreen
URL: 
https://github.com/apache/cordova-plugin-splashscreen/issues/157#issuecomment-521284830
 
 
   My team started having the same exact problem. The solution that worked for 
us was to manually hide the splash screen specifically for iOS (because 
manually hiding for Android also failed):
   ```xml
   <platform name="android">
      ...
   </platform>
   <platform name="ios">
      <preference name="AutoHideSplashScreen" value="false" />
      ...
   </platform>
   ```
   
   and then
   ```javascript
   onDeviceready(){
      window.navigator.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:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to