android - Cordova build returns missing plugin.xml -


when build cordova project warning message as:

missing file: /home/vijay/workspace/repos_temp/quicktraq_android/plugins/nl.x-services.plugins.toast/plugin.xml

missing file: /home/vijay/workspace/repos_temp/quicktraq_android/plugins/cordova-plugin-device-rotation-vector/plugin.xml

this happens when add plugin or remove plugin .

this happens warning when add plugin or build project when remove plugin error occurs

error: enoent, no such file or directory '/home/vijay/workspace/repos_temp/quicktraq_android/plugins/com.grumpysailor.cordova-plugin-device-rotation-vector/plugin.xml' @ object.fs.opensync (fs.js:439:18) @ object.fs.readfilesync (fs.js:290:15) @ object.module.exports.parseelementtreesync (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/util/xml-helpers.js:121:27) @ /usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/plugman/util/dependencies.js:56:35 @ array.foreach (native) @ object.module.exports.package.generatedependencyinfo (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/plugman/util/dependencies.js:53:45) @ rununinstallplatform (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/plugman/uninstall.js:218:53) @ function.module.exports.uninstallplatform (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/plugman/uninstall.js:81:12) @ /usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/cordova/plugin.js:205:58 @ _fulfilled (/usr/local/lib/node_modules/cordova/node_modules/q/q.js:787:54)

and plugin remove failed .. there way resolve ??

the plugin.xml looks missing. path each added plugin's plugin.xml should be:

 <yourapp>/plugins/<some-plugin>/plugin.xml 

if cannot find plugin.xml files in folders, have manually download git resource. try adding device-rotation-vector's xml here , run:

cordova plugin remove cordova-plugin-device-rotation-vector 

if works correctly, same toast plugin.

you can find list of plugins installed using:

cordova plugin list 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -