1

I started recently using Android Studio and am stuck with this error message:

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

Any idea how to resolve it?

I did some search on the issue am having and I think it has to do with changing my ANDROID_SDK_ROOT environment variable to the original value, but no clue how to do so.

Pang
  • 9,564
  • 146
  • 81
  • 122
  • Possible duplicate of [Error in launching AVD](http://stackoverflow.com/questions/26355645/error-in-launching-avd) – showp1984 Oct 07 '15 at 23:34

1 Answers1

0

Not resolveable if you have an AMD processor on Windows, at least as far as I know.

If you have an Intel processor, enable the virtual extensions in your bios (called VT, if available). If you are on windows also install HAXM via the Android SDK manager. (also install it, the SDK manager will only download it: {SDK_FOLDER}\extras\intel\Hardware_Accelerated_Execution_Manager\intelhaxm.exe)

Disable hyper-V if you are on Windows 8 or above using: dism.exe /Online /Disable-Feature:Microsoft-Hyper-V

Genymotion is an alternative for AMD users.

Possible duplicate of Error in launching AVD with AMD processor

Community
  • 1
  • 1
showp1984
  • 378
  • 1
  • 2
  • 13
  • I do believe it might be a duplicate of the thread you tagged. I do apologies about this. Should i delete the question? –  Oct 07 '15 at 23:32
  • If you want to, but I just flagged it for being a duplicate. Someone will surely take care of it. :-) – showp1984 Oct 07 '15 at 23:34
  • How can i exactly enable my intel vt x? –  Oct 07 '15 at 23:50
  • In your BIOS look under Features. There should be an entry called "Virtualization Technology" or "VT support" or "VT-x Support" or something along the lines of those. Enable it. – showp1984 Oct 07 '15 at 23:52
  • Note that not all Intel processors support VT, especially if your computer is older or lower end. Better check up on that as well. – Kai Oct 17 '15 at 03:30