I've trying with several tutorials to have splascreen worked with at least default screen.png provided by cordova.
i edited the xml in root of my appiclation path (ex: cordova/myapp) to add the 2 lines required to have splashcreen showed as follow:
<?xml version='1.0' encoding='utf-8'?>
<widget id="fr.bacly.baclym" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>baclym</name>
<description>
Application Mobile du Bacly </description>
<author email="philippe.ihuel@bacly.fr" href="http://cordova.io">
Philippe Ihuel
</author>
<content src="index.html" />
<preference name="Orientation" value="portrait" />
<plugin name="cordova-plugin-whitelist" version="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<!-- you can use any density that exists in the Android project -->
<!-- <splash src="res/res-land-hdpi/screen.png" density="land-hdpi"/>
<splash src="res/res-land-ldpi/screen.png" density="land-ldpi"/>
<splash src="res/res-land-mdpi/screen.png" density="land-mdpi"/>
<splash src="res/res-land-xhdpi/screen.png" density="land-xhdpi"/>
<splash src="res/res-port-hdpi/screen.png" density="port-hdpi"/>
<splash src="res/res-port-ldpi/screen.png" density="port-ldpi"/>
<splash src="res/res-port-mdpi/screen.png" density="port-mdpi"/>
<splash src="res/res-port-xhdpi/screen.png" density="port-xhdpi"/> -->
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="30000" />
</widget>
I run on genymotion with a simulated S4 Android 4.4.2, but it doesnt show anything except a black screen for some times.
Any advice ?