1

I Use the latest version of Android Studio (Ver1.0.1 - 11 December 2014) When I try to run the emulator, I got this Error :

emulator: ERROR: x86 emulation currently requires hardware acceleration! Please ensure Intel HAXM is properly installed and usable. CPU acceleration status: HAX kernel module is not installed!

But I think I've already installed what it needs:

enter image description here

1) I click the Run button ...

enter image description here

2) The Error

enter image description here

3) My SDK Manager

Inzimam Tariq IT
  • 6,548
  • 8
  • 42
  • 69
SalmanShariati
  • 3,873
  • 4
  • 27
  • 46

2 Answers2

2

Try to reinstall Intel HAXM (it is in %android-sdk%/extras/intel/Hardware_Accelerated_Execution_Manager) and check if it enabled in your BIOS. Also (but it is not preferred because slower), you can make your emulator to use arm7 image.

Inzimam Tariq IT
  • 6,548
  • 8
  • 42
  • 69
John Smith
  • 605
  • 4
  • 14
  • Thanks, So "Installed" word in SDK Manager in front of HAXM doesn't mean that HAXM is installed on my machine, so I have to install it from the path you note. – SalmanShariati Dec 17 '14 at 05:47
  • 1
    `it is not preferred because slower` ... but it helps you write better code. Because if it runs decently on a slow emulator, it will run bettere on a real device (particularly useful for older and slower devices). – Phantômaxx Dec 17 '14 at 08:03
2

Are you sure the SDK manager actually installed the package?

On my Mac the SDK manager only downloads it, had to install it manually (see here).

How to install per OS: https://software.intel.com/en-us/android/articles/intel-hardware-accelerated-execution-manager

Jan Groth
  • 14,039
  • 5
  • 40
  • 55