Sencha Touch app packaged with Cordova blank on Device, first launch

74 Views Asked by At

I have a Sencha Touch app that runs fine on both desktop and mobile browsers. However, when I build it to a native Android app using Cordova, on the very first launch of the application, the splash screen displays and after that the screen is blank. If I close and reopen the app, the splash screen displays and the main menu appears after, and the app works fine.

Any ideas what could be causing such behaviour?

1

There are 1 best solutions below

1
On

I'd suggest using a logging tool like http://jsconsole.com/ to see if something went wrong.

Also, you can try to add this script into your index.html to alert all script errors:

<script type="text/javascript">
    // output errors to console log
    if ('true' === 'true') {
        window.onerror = function (message, filename, lineno, colno, error) {
            alert("window.onerror ::" + message + " in " + filename + " at " + lineno);
            if (error != null) {
                alert(error.stack);
            }
        };
    }
</script>