1

When i run ( ionic cordova build android --release ) to make .apk file . the error occur ( TypeError: env.runcmd is not a function). I try following step to resolve like. 1.npm install @ionic/cli-plugin-cordova@latest it not solve.

  • 1
    Possible duplicate of [During building ionic app](https://stackoverflow.com/questions/45475362/during-building-ionic-app) – Suraj Rao Oct 16 '17 at 05:57
  • CLI version problem run this code `npm i -g ionic@latest` then `npm i --save-dev --save-exact ionic@latest` – Antony Joslin Oct 16 '17 at 06:00

1 Answers1

1

May be issues with your plugins out of date or any bugs with latest upgrades.

Try :

  Remove your node_modules folder 
  npm install --save --save-exact ionic@3.6.0 
  npm install

Freshly install all the node modules.

Lokkesh
  • 550
  • 3
  • 11