| |
@@ -42,8 +42,9 @@
|
| |
<preference name="DisallowOverscroll" value="true" />
|
| |
<preference name="android-minSdkVersion" value="16" />
|
| |
<preference name="BackupWebStorage" value="none" />
|
| |
- <preference name="SplashScreenDelay" value="2000" />
|
| |
- <preference name="FadeSplashScreenDuration" value="2000" />
|
| |
+ <preference name="AutoHideSplashScreen" value="false" />
|
| |
+ <preference name="FadeSplashScreenDuration" value="500" />
|
| |
+ <preference name="ShowSplashScreenSpinner" value="false" />
|
| |
<preference name="SplashScreen" value="screen" />
|
| |
<feature name="StatusBar">
|
| |
<param name="ios-package" onload="true" value="CDVStatusBar" />
|
| |
The splash screen currently hides after a timeout of 2 seconds. This is not the proper timeout in all cases. The app loading time depends on a lot of factors including the device hardware capabilities and network.
This PR proposes to disable the auto-hide of the splash screen, and instead hide it after we have determined that the app has been completely loaded.
Closes #16