Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PANIC: Missing emulator engine program for 'arm' CPUS

I am getting the same issue as mentioned in below link.But this one has been put on hold and I am still seeking for a solution. https://stackoverflow.com/questions/27146511/panic-missing-emulator-engine-program-for-arm-cpus-eclipse

So I would like to frame the question and ask here. Until yesterday, emulator were working fine. But since today I am receiving the following error while I am trying to open emulator

PANIC: Missing emulator engine program for 'arm' CPUS

My AVD: AVD

This is the error I am receiving:

enter image description here

I have updated and installed components through SDK Manager and I even tried to restart eclipse and my pc as well. I tried creating new AVD But nothing worked here.

Thank You in advance.

like image 805
sanedroid Avatar asked Nov 26 '14 13:11

sanedroid


1 Answers

In my case, my PATH environment variable was set incorrectly. It was including

<sdk-path>/sdk/tools

Instead of

<sdk-path>/sdk/emulator

emulator.exe exists in both of these directories, so the emulator command will work either way. However, emulator-arm.exe only exists in my emulator directory.

like image 134
Martin Avatar answered Sep 29 '22 09:09

Martin