Cordova splash screen remove

夙愿已清 提交于 2019-11-28 07:08:43
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.xmlfile.

This will definitely remove splash screen from your project

cordova plugin rm cordova-plugin-splashscreen

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!