I am using the following code to hide the splash screen.
In my plugins , I have the cordova splash screen plugin enabled.
I am testing on an android device , it does not hide the splash screen.
//declare the application variable globally
var app;
// Wait for PhoneGap to load
document.addEventListener("deviceready", onDeviceReady, false);
// PhoneGap is ready
function onDeviceReady() {
app = new kendo.mobile.Application(document.body, { platform: 'ios7' });
navigator.splashscreen.hide();
}