Cordova: Cannot Add Android Platform, Getting EACCES Error
I've installed Cordova using sudo npm install cordova and set up the paths (I believe) correctly. When I run cordova platform add android I am receiving the following error: Error
Solution 1:
As it turned out, it was indeed a permissions issue. Running sudo chown -R $(whoami) ~/.npm
seems to be allowing me to progress
Post a Comment for "Cordova: Cannot Add Android Platform, Getting EACCES Error"