O ecrã táctil do Cordova 5.1.1 não funciona

Estou tentando fazer com que a tela inicial funcione no meu dispositivo Android (Redmi 1S, versão Android 4.4.4 KTU84P). O aplicativo funciona bem no meu dispositivo, mas a tela inicial não aparece. As imagens da tela inicial são copiadas e renomeadas como "screen.png" nos diretórios "plataformas \ android \ res \ drawable *" respectivos. Não instalei nenhum plug-in de tela inicial para o cordova. Abaixo está o conteúdo de config.xml no diretório raiz do projeto.

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.victor.workshop" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
    <name>Workshop</name>
    <description>
        A sample Apache Cordova application that responds to the deviceready event.
    </description>
    <author email="[email protected]" href="http://cordova.io">
        Apache Cordova Team
    </author>
    <content src="index.html" />
    <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">
        <allow-intent href="market:*" />
        <icon src="res/android/icons/xhdpi.png"/>
        <icon src="res/android/icons/ldpi.png" density="ldpi" />
        <icon src="res/android/icons/mdpi.png" density="mdpi" />
        <icon src="res/android/icons/hdpi.png" density="hdpi" />
        <icon src="res/android/icons/xhdpi.png" density="xhdpi" />

        <splash src="res/android/splashscreens/land-hdpi.png" density="land-hdpi"/>
        <splash src="res/android/splashscreens/land-ldpi.png" density="land-ldpi"/>
        <splash src="res/android/splashscreens/land-mdpi.png" density="land-mdpi"/>
        <splash src="res/android/splashscreens/land-xhdpi.png" density="land-xhdpi"/>

        <splash src="res/android/splashscreens/port-hdpi.png" density="port-hdpi"/>
        <splash src="res/android/splashscreens/port-ldpi.png" density="port-ldpi"/>
        <splash src="res/android/splashscreens/port-mdpi.png" density="port-mdpi"/>
        <splash src="res/android/splashscreens/port-xhdpi.png" density="port-xhdpi"/>
    </platform>


    <preference name="SplashScreen" value="screen" />
    <preference name="SplashScreenDelay" value="10000" />

</widget>

Qualquer ajuda ou ponteiro apreciado. Desde já, obrigado.

questionAnswers(1)

yourAnswerToTheQuestion