Latest version of Cordova Add splash only need to overwrite config.
The Official document address is: Http://cordova.apache.org/docs/en/4.0.0/config_ref_images.md.html#Icons%20and%20Splash%20Screens
But according to the official instructions, there is no effect on Android:
<platform name="android">
<!-- you can use any density that exists in the Android project -->
<splash src="res/splash.png" density="land-hdpi"/>
<splash src="res/splash.png" density="land-ldpi"/>
<splash src="res/splash.png" density="land-mdpi"/>
<splash src="res/splash.png" density="land-xhdpi"/>
<splash src="res/splash.png" density="port-hdpi"/>
<splash src="res/splash.png" density="port-ldpi"/>
<splash src="res/splash.png" density="port-mdpi"/>
<splash src="res/splash.png" density="port-xhdpi"/>
</platform>
Later find StackOverflow, add the following sentence:
<name= "SplashScreen" value= "screen"/>
The effect is there, the SplashScreen parameter in the official document does not find any description, do not know is not the old version of the parameters. This may be a bug in Cordova.
Ps:
Set the splash delay time to 10000 milliseconds:
<name= "Splashscreendelay" value= "10000"/>
Cordova Adding splash