Tell me more ×
Salesforce Stack Exchange is a question and answer site for Salesforce administrators, implementation experts, developers and anybody in-between. It's 100% free, no registration required.

I have developing an iOS app using Salesforce mobile SDK 1.4 with Sencha Touch for the front end. I am using Phonegap/Cordova version 2.2. My application is able to logon successfully with Salesforce. I can load app.js on the simulator smoothly but on a real device I am getting a WHITE BLANK SCREEN.

I am not getting any error at logs/console. I am using sencha touch version 2.1

This is my app.js

Ext.application({
name: 'Sencha',
controllers: ['Main'],
views: ['Main'],
stores: ['Contacts'],
models: ['Contact'],

launch: function() {
    Ext.Viewport.add({
        xtype: 'mainpanel'
    });
},                
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.