Sudhir Belagali
Sudhir Belagali

Reputation: 368

Could not launch android emulator in android studio

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

Answers (2)

Rajendran Ambika
Rajendran Ambika

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

Bruno B. Carvalho
Bruno B. Carvalho

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

Related Questions