Cordova_plugins.json not found

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, /* Indicates that all class dependencies are concatenated into this file when build */ "update": "delta" } ], 
+4
source share

Source: https://habr.com/ru/post/1482225/


All Articles