Error in launching AVD in Mac

15,392

Solution 1

As the error says, you have to install HAXM, which can be found here.

Solution 2

From https://software.intel.com/en-us/android/articles/installation-instructions-for-intel-hardware-accelerated-execution-manager-mac-os-x

Under Extras, check the box next to Intel x86 Emulator Accelerator (HAXM).

[Install]

The SDK Manager will download the installer to the "extras" directory, under the main SDK directory. Even though the SDK manager says "Installed" it actually means that the Intel HAXM executable was downloaded. You will still need to run the installer from the "extras" directory to finish installation.

Solution 3

You need to navigate to

/YOUR_SDK_PATH/extras/intel/Hardware_Accelerated_Execution_Manager/

Then install the HAXM dmg file.

Solution 4

Go to

Window>Android Sdk Manager

  1. then in the last section you will find extras expand it

  2. then you will find intel (x86) HAXM installer

  3. check the check box and click install package.

  4. Accept the license agreement and click install.

  5. After installing restart your eclipse.

Now you can run AVD

All the best :)

Share:
15,392
deep
Author by

deep

Updated on June 04, 2022

Comments

  • deep
    deep almost 2 years

    I have OSX Yosemite 10.10 with an Intel i5 processor. I installed Android SDK and Eclipse. It works but the problem is that when I Create AVD launch it it shows this error:

     Starting emulator for AVD 'Nexus4-18-xhdpi'
     emulator: ERROR: x86 emulation currently requires hardware acceleration!
     Please ensure Intel HAXM is properly installed and usable.
     CPU acceleration status: HAX is not installed on this machine (/dev/HAX is missing).
    

    I am new to android programming and have no clue how to solve it or look into /dev/Hav. Please help. Thank you.

  • deep
    deep over 9 years
    The latest version Android SDK has intel version 1.1.0 which does not work with OSX Yosemite 10.10. Refer the answer link and get the latest version 1.1.1 HAXM. It will get installed over and replace 1.1.0 and works!!
  • SmartyP
    SmartyP about 8 years
    Just wanted to comment that I did have to manually run the .dmg and it's relative installer on my Mac before this would work. Simply installing the package and running the installer script in the folder was not enough. Thank you for your answer!