Ionic platform add android failed

Hi guys!
I’m having this problem when I try to add android platform to my ionic app
Java installed
Android tools and platform tools are in my PATH
Cordova installed
Im running Linux Mint 17
Running the command as SuperUser produces the same result.
Here’s the output from ionic platform add android:
Thanks in advance.

Running command: /home/proxima/Desktop/Code/IONIC/MyApp/hooks/after_prepare/010_add_platform_class.js /home/proxima/Desktop/Code/IONIC/MyApp
Error: spawn EACCES
at exports._errnoException (util.js:746:11)
at ChildProcess.spawn (child_process.js:1162:11)
at Object.exports.spawn (child_process.js:995:9)
at Object.exports.spawn (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/cordova/superspawn.js:100:31)
at runScriptViaChildProcessSpawn (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/hooks/HooksRunner.js:188:23)
at runScript (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/hooks/HooksRunner.js:131:16)
at /usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/hooks/HooksRunner.js:114:20
at _fulfilled (/usr/local/lib/node_modules/cordova/node_modules/q/q.js:787:54)
at self.promiseDispatch.done (/usr/local/lib/node_modules/cordova/node_modules/q/q.js:816:30)
at Promise.promise.promiseDispatch (/usr/local/lib/node_modules/cordova/node_modules/q/q.js:749:13)*

Try changing your hooks permissions.

chmod +x hooks/after_prepare/010_add_platform_class.js

Do this to all files under hooks/

2 Likes

Awesome! It worked.
Thank you!