skip to Main Content

I’ve been looking online for this and it seems like no one has the same problem as I have. I just downloaded Android Studio to start learning Kotlin and after following Google’s tutorial steps I get this message: enter image description here

After that I hit ok to Install the HAXM thing and it says successful but It goes back to the same message of HAXM needs to be installed. I tried SDK manager –> SDK tools –> Intel x86 Emmulator Accelerator (turn on), It didnt work. Someone help, please

3

Answers


  1. Go to your SDK directory:

    (C:usersusernameAppDataLocalAndroidsdk, generally).

    In this directory, go to:

    extras → Intel → Hardware_Accelerated_Execution_Manager and run the file named "haxm-7.6.5-setup.exe".

    After you install, android studio will detect it. If not, restart android studio.

    Login or Signup to reply.
  2. What I did was I opened the SDK Manager > SDK Tools tab and checked Intel x86 Emulator Accelerator (HAXM Installer), 7.6.5 and installed.

    In the window displaying the installation progress, click on the Show details button and you’ll see a log, not quite long. At some point you’ll come accross something like "Path for download "C:Users<YOUR_USER>AppDataLocalAndroidSdkextrasintelHardware_Accelerated_Execution_Manager"). In my case it said that this folder already existed, so it was downloding it to folder …Hardware_Accelerated_Execution_Manager-2 instead.

    Once it’s done, go to that folder and you should find a file named "haxm-7.6.5-setup". Run it and it will install HAXM. Now you’ll be able to run your emulator, even if the message "HAXM is not installed" keeps appearing.

    Login or Signup to reply.
  3. I was unable to install HAXM via Android Studio as described above. Android Studio reported version 7.6.5 was available. However I had installed a newer version (7.8.0) manually.

    The emulator would not recognize the newer, manually installed HAXM. All attempts to install HAXM via the Studio would fail, and no installation file was present in the Android/sdk/extras/intel folder.

    This is what I did:

    (1) Uninstall HAXM via Windows.
    Settings>Apps>Program and Features>Turn Windows features on or off (search for Intel).

    (2) Install HAXM inisde Android Studio via the SDK Manager.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search