Using Cordova Plugins and Ionic Native
When developing an app that uses Capacitor, it's possible to use both Cordova and Ionic Native plugins.
Installing Cordova Plugins
Simply install your plugin of choice, sync your project, finish any required native project configuration, and you're ready to go:
npm install cordova-plugin-name
npx cap sync
Updating Cordova Plugins
Similar to the installation steps. Simply update the cordova plugin to the latest version then Capacitor will pick up the changes:
npm install cordova-plugin-name@2
npx cap update