I upgraded cordova from 1.6.0 to 1.7.0 on existing Android project and the splash image of this app had not been displayed since then.
I upgraded the project by exchanging cordova.jar and cordoba.js. The splash images (splash.png) are located under res/drawable-hdpi, res/drawable-ldpi and res/drawable-mdpi respectively and these are configured in onCreate() of Activity as below.
super.setIntegerProperty("splashscreen", R.drawable.splash);
What can be considered as a cause?