Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cordova splash screen remove

Is it possible to disable Cordova default splash screen? I have removed the plugin but the default splash screen for iPhone still is showing and for Android the white screen is showing. Can this be fully removed?

like image 761
artur Avatar asked Apr 06 '15 13:04

artur


People also ask

How do I remove splash screen in ionic?

You can disable the splash screen by setting launchDuration: 0 in capacitor.

How do you remove splash screen in ionic 3?

Inside the ready function, you just need to add navigator. splashscreen. hide(); . Adding that timeout means you are telling it to be visible for 5 seconds and then hide.


1 Answers

in your config.xml change the value to none in the below line

<preference name="SplashScreen" value="none"/> 
like image 119
Viky293 Avatar answered Sep 28 '22 04:09

Viky293