I am using Sencha Touch 2.1 with PhoneGap 2.7.0 so that I can pack it for iOS. The application loads until I pack it using Sencha CMD by running the sencha app build package .
In the regular version and the package version in the javascript console, I see cordova_plugins.json 404 (Not Found)
I added cordova-2.7.0.js to the root of the application and edited app.json to enable it as shown below. Any idea what could be the problem?
"js": [ { "path": "cordova-2.7.0.js" }, { "path": "resources/js/infobubble-compiled.js" }, { "path": "touch/sencha-touch.js" }, { "path": "app.js", "bundle": true, "update": "delta" } ],
vLamp source share