Issue with Sencha Touch application in Phonegap 1.0
Issue with Sencha Touch application in Phonegap 1.0
We have been developing a medium sized touch app, and have previously compiled fairly successfully in Phone Gap. Now when I run it on the emulator, the app hangs and I only see the index.html background. I just put this on a different Mac with PhoneGap 1.0 (rather than 0.9.6).
So I wonder if anyone has had problems using the new Phonegap version. Also, I am a little confused on the startup. The following is the main structure of the ST app, which works fine in browser, and (at one point anyway) ran on iPad. Not sure if PhoneGap expects you to use another startup method.
Thanks
Ext.setup({
onReady: function() {
var rootPanel;
var frontPanel;
var commentForm;
function a() {
}
...
function b() {
}
var rootPanelBase = {
id: 'rootPanel',
layout: 'card',
fullscreen: true,
items: [frontPanel, commentPanel]
};
rootPanel = new Ext.Panel(rootPanelBase);
}
});