Error opening emulator in Android Studio

2

I'm having an error here in Android Studio, when I debuggar the App in the emulator, it does not open and the following error appears:

  

"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! "

Does anyone know how to solve this?

    
asked by anonymous 25.09.2015 / 01:08

2 answers

1

As the message says, you need to install the HAXM module.

  • Open the SDK Manager
  • Go to SDK Tools
  • Check the HAXM Installer option.
  • Go to the folder pointed to on your Android SDK Location and run intelhaxm-android.exe to install.
  •     
    25.09.2015 / 03:27
    1

    First, make sure HAXM installer is inscribed in your SDK Manager, as in the following figure.

    Afterdownloadingthecomponent,runyourinstererviathecommandline:

    {SDK_FOLDER}\extras\intel\Hardware_Accelerated_Execution_Manager\intelhaxm.exe

    Note:InAndroidStudio,thecommand"intelhaxm.exe" had been changed to "intelhaxm-android.exe"

    If you are shown the error " VT not supported " during installation, disable Hi-V under "Windows Features." Another way to disable Hyper-V is by executing the following command: dism.exe /Online /Disable-Feature:Microsoft-Hyper-V . Finally, you need to enable "Virtualization Technology" in your BIOS.

        
    25.09.2015 / 03:35