I'm using PhoneGap local build, attempting to get rid of the blank white screen that appears after the splash screen on ios.
None of the things I've tried have worked--mainly, nothing worked !
please help
cordova plugin rm org.apache.cordova.splashscreen
cordova plugin add org.apache.cordova.splashscreen
You should probably ask your question here:You don't use navigator.splashscreen.hide(); for android. you use config.xml <preference name="SplashScreenDelay" value="7000"/>For ios use navigator.splashscreen.hide(). Use config.xml: <gap:plugin name="org.apache.cordova.splashscreen" version="0.2.3" /> and make sure your files are named correctly in config.xml:
<gap:splash src="splash.png" /><gap:splash src="Resources/splash/Default~iphone.png" gap:platform="ios" width="320" height="480" /><gap:splash src="Resources/splash/Default@2x~iphone.png" gap:platform="ios" width="640" height="960" /><gap:splash src="Resources/splash/Default-568h@2x~iphone.png" gap:platform="ios" width="640" height="1136" /><gap:splash src="Resources/splash/Default-Landscape.png" gap:platform="ios" width="768" height="1024 " /><gap:splash src="Resources/splash/Default-Portrait.png" gap:platform="ios" width="1024" height="768" />
<gap:splash src="Resources/splash/Default-Port...@2x.png" gap:platform="ios" width="1536" height="2048" /><gap:splash src="Resources/splash/Default-Land...@2x.png" gap:platform="ios" width="2048" height="1536" />