You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2019/08/14 15:02:34 UTC

[GitHub] [cordova-plugin-splashscreen] tishun commented on issue #157: ios 12 app stuck on splashscreen

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:
users@infra.apache.org


With regards,
Apache Git Services

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