Have you run into a situation where you upgraded Cordova and your application broke due to a third party plugin???
Here are the steps to install previous version of Cordova
Here are the steps to install previous version of Cordova
- cordova -v would tell you the current version of cordova installed.
- npm info cordova would tell you the available versions of cordova in npm.
- Suppose you want to install v 5.3.3 then just follow the below commands
- npm uninstall -g cordova This will uninstall the current cordova verison
- npm install -g cordova@5.3.3 This will install the version 5.3.3
- Then you need to update your application to point to new cordova
- cordova platform update android
- cordova platform update ios
- You can also update ionic as below
- ionic lib update