I have changed the value to none for splash screen in the config.xml. So Splash screen is not showing up. But the white screen is showing up. Is there away to avoid that white screen?
this is my config.xml file:
<preference name="SplashScreenDelay" value="0"/>
<preference name="ShowSplashScreen" value="false"/>
<preference name="SplashScreen" value="none"/>
As said above, your app needs time to load the assets and render, so you will unfortunately always have that white screen if you just remove the splash.
I would suggest that in config.xml you keep the splashcreen but that you only replace the default splashcreen resource inside the respective platform. For instance, it would looks like below, with your resources referenced from the root folder of your project:
I have never worked with animated splashscreens however and don't know if it will work.