I have installed all my cordova plugins using the following syntax:
cordova plugin add
I know (now) that if you add the
As reported in this cordova release post from cordova 5 you can add already installed plugins to config.xml
using just one command:
cordova plugin save
This will save all previously installed plugins into your project’s config.xml
.
You can check the latest cordova plugin documentation for more details.
If you need to do the same with the installed platforms, just run cordova platform save.