During build of an ionic App, this error is shown:
anyone can help me ?
During build of an ionic App, this error is shown:
anyone can help me ?
It says:
Error occurred during command execution from a CLI plugin (@ionic/cli-plugin-cordova). Your plugins may be out of date.
Did you try to install latest cordova plug-in :
$> npm install @ionic/cli-plugin-cordova@latest
Also update the dependencies....
Things to try:
In my case, I just change version package.json of this two plugins under devDependencies
section. (In your case version number may differ)
"@ionic/cli-plugin-cordova" : "1.4.1",
"@ionic/cli-plugin-ionic-angular" : "1.3.2"
after this change in package.json
run below command:
npm update
Now try to build, it's working.
I my case what I did was went to the project folder and ran the following command to Get it working
cd platforms/ios/cordova && npm install ios-sim@latest
The main problem for me was the @ionic/cli-plugin-cordova , so I downgraded it to v1.4.1 ( Don't know if any of the later versions are working fine.)
Command: npm install --save-dev @ionic/cli-plugin-cordova@1.4.1