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 globallyvar app;// Wait for PhoneGap to loaddocument.addEventListener("deviceready", onDeviceReady, false); // PhoneGap is readyfunction onDeviceReady() { app = new kendo.mobile.Application(document.body, { platform: 'ios7' }); navigator.splashscreen.hide(); }