Using Phonegap (3.1.0), Phonegap Build and the Splashscreen plugin I am trying to prevent the splash screen from auto hiding. I will then hide the splash screen from within the JavaScript once the screen has fully loaded.
Currently the splash screen always autohides as soon as the app begins to load the JavaScript, my config.xml is as per below. Primarily I am having this issue on Android 2.2, although I have not looked at iOS yet which I also need to support.
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.savvy.mobile.Faversham"
version = "1.0.0">
<gap:platform name="android" />
<gap:platform name="ios" />
<preference name="phonegap-version" value="3.1.0" />
<preference name="splash-screen-duration" value="500000" />
<!-- Default splash -->
<gap:splash src="splash.png" />
<gap:plugin name="org.apache.cordova.splashscreen" />
</widget>