Hi,
my native android app wont start. It runs very smoothly when I access the app directly via android browser, no matter if i try the testing or production build.
The packaged native android app stucks at the loading indicator. Via weinre, I got the following error messages:
weinre server console:
Code:
WARN:weinre:client 1207881243: weinre: invocation exception on Object.loadEventFired(): TypeError: 'undefined' is not an object
and sometimes: (maybe got these errors because I was playing around with the code)
Code:
2013-01-08 16:49:15.225:WARN:weinre:client 1207881243: weinre: invocation exception on Object.loadEventFired(): TypeError: 'undefined' is not an object2013-01-08 16:49:15.727:WARN:weinre:target 1207881254: weinre: invocation exception on WiCSSImpl.getStylesForNode(): Error: SYNTAX_ERR: DOM Exception 12
2013-01-08 16:49:17.736:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.736:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.736:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.736:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeRemoved(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeRemoved(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeRemoved(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeRemoved(): TypeError: 'undefined' is not an object
2013-01-08 16:49:17.737:WARN:weinre:client 1207881243: weinre: invocation exception on Object.childNodeInserted(): TypeError: 'undefined' is not an object
weinre javascript console says:
This error repeats every few seconds!
I am using following sencha tools on my osx mountain lion system:
Sencha Cmd v3.0.0.250
Sencha Touch 2.1
My phone:
Android 4.1.1 on my HTC One X.
My config.json for building the app:
Code:
{
"applicationName":"app",
"applicationId":"com.br.app",
"bundleSeedId":"SYU97DXVF5",
"versionString":"1.0",
"versionCode":"1",
"icon": {
"57":"resources/icons/Icon.png",
"72":"resources/icons/Icon~ipad.png",
"114":"resources/icons/Icon@2x.png",
"144":"resources/icons/Icon~ipad@2x.png"
},
"inputPath":"./",
"outputPath":"/Users/bene/app/build",
"configuration":"Debug",
"platform":"Android",
"deviceType":"iPhone",
"certificatePath":"/Users/bene/Work/android/my-release-key.keystore",
"certificateAlias":"xxx",
"certificatePassword":"xxx",
"permissions": [
"INTERNET",
"ACCESS_NETWORK_STATE"
],
"sdkPath":"/Users/bene/Work/android/sdk",
"androidAPILevel":"8",
"orientations": [
"portrait"
]
}
Any help would be greatly appreciated!!
Greetings