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.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
in your config.xml
change the value to none in the below line
<preference name="SplashScreen" value="none"/>
回答2:
You can try the command to remove cordova splash screen
cordova plugin rm cordova-plugin-splashscreen
回答3:
cordova plugin -rm cordova-plugin-splashscreen
回答4:
try this
<preference name="SplashScreenDelay" value="0" />
You can add this to the intelxdk.config.additions.xml
file.
回答5:
This will definitely remove splash screen from your project
cordova plugin rm cordova-plugin-splashscreen