Reputation: 368
I am running android studio in Ubuntu 14.04.
Whenever I launch my application , It ask me to choose the emulator .
And I used to click OK to launch new emulator and when i do so I am getting this error .
/home/sudhir/Android/Sdk/tools/emulator -avd Nexus_5_API_22_x86 -netspeed full -netdelay none -wipe-data
Could not launch '/home/sudhir/Android/Sdk/tools/emulator64-x86': Permission denied
Please help me
Upvotes: 1
Views: 1280
Reputation: 85
do like for emulator permission settings
chmod +x /Users/MyUserName/Library/Android/sdk/tools/emulator64-x86
chmod +x /Users/MyUserName/Library/Android/sdk/tools/emulator
chmod +x /Users/MyUserName/Library/Android/sdk/tools/emulator-x86
Upvotes: 0
Reputation: 586
Maybe you have some permissions issues, you need to have the permission x (execute) for the emulator. Try:
ls -l /home/sudhir/Android/Sdk/tools/
And check if you have the execute permissions on the emulator. If not, try:
chmod +x emulator64-x86
Well, hope it helps.
Upvotes: 4