Is it possible to disable cordova default splash screen, I have removed the plugin but default splash screen for iphone still is showing and for android white screen is showing.Can this be fully removed.
Viky293
in your config.xml
change the value to none in the below line
<preference name="SplashScreen" value="none"/>
You can try the command to remove cordova splash screen
ionic cordova plugin rm cordova-plugin-splashscreen
mirrrael
cordova plugin -rm cordova-plugin-splashscreen
Tested on android:
To temporarily remove delay caused by splash screen:
<preference name="SplashScreenDelay" value="0" />
To permanently remove splash screen:
cordova plugin rm cordova-plugin-splashscreen
Below did not work:
<preference name="SplashScreen" value="none" />
<preference name="FadeSplashScreenDuration" value="0" />
Abed Putra
try this
<preference name="SplashScreenDelay" value="0" />
You can add this to the intelxdk.config.additions.xml
file.
This will definitely remove splash screen from your project
cordova plugin rm cordova-plugin-splashscreen
来源:https://stackoverflow.com/questions/29472150/cordova-splash-screen-remove