I am setting up eclipse and ADT everything is working fine JAVA, android virtual devices and everything except the ADT sdk manager it says permission denied.
/home/yousaf/android-sdks/tools/android: 84: java: Permission denied
/home/yousaf/android-sdks/tools/android: 101: java: Permission denied
exec: 114: java: Permission denied
I have executable permission on this folder and files owner is my own user and I have tried to run this as root but same results.
Here are the permissions for that file
-rwxrwxrwx 1 yousaf yousaf 3498 2014-01-07 13:27 /home/yousaf/android-sdks/tools/android
ls -l /home/yousaf/android-sdks/tools/android
– Wilf Jan 07 '14 at 14:50ls -l...
output for the parent directory? Make sure java is installed - see here. Runningchmod -R +x /home/yousaf/android-sdks/tools/android
may help... – Wilf Jan 07 '14 at 20:26