Cordova build failed with error code : EACCESS
$ cordova build android
Running command: /home/user/proj1/platforms/android/cordova/build
execvp(): Permissi
To solve the EACCESS Problem please copy and save your platform custom icons / splashes / config.xml settings and delete the platform folder. after that run phonegap run android from your console again. it should work again. after that copy back the custom files / settings to the new platform folder.
This is a common PhoneGap problem.
Most of the time it has to do with permissions on the build
folder and script file.
Try using: chmod a+x
on them.
You could brute force it if you are an admin and just sudo chmod -R 777 ./platforms/
from the project root directory.