Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use Android Emulator on AMD Ryzen (Android Studio)?

I try to build Android app from Android Studio.

I tried to install HAXM from Android Studio installer but I've an error:

enter image description here

Intel Virtualization Technology is already enabled in my BIOS. And the Hyper-V is already disabled on Windows 10.

like image 905
pirmax Avatar asked Apr 05 '20 18:04

pirmax


People also ask

Can AMD run Android Emulator?

The Android Emulator Hypervisor Driver for AMD Processors can be installed via the SDK Manager in Android Studio 4.0 Canary 5 or later, or from Github (see below). To install from the SDK Manager, follow these steps: Open Tools->SDK Manager.

Can Android Studio run on Ryzen?

Ryzen + android studio is great now.

Can we run Android Studio in Ryzen 5?

This confirms that the AMD processors work completely fine running the Android emulators.


Video Answer


1 Answers

For Ryzen on Windows 10, use the latest stable instead of canary.

  1. Enable virtualization in BIOS.
  2. Remove HAXM.
  3. Turn off Hyper-V, Windows Hypervisor platform, Windows Sandbox(depends on your windows version, old versions may not have all). REBOOT

screenshot

  1. Launch SDK Manager via Android Studio and you should see "Android Emulator Hypervisor Driver for AMD Processors". Check and click "Apply". The SDK Manager will download the installer package and unpack it to $ANDROID_SDK_ROOT\extras\google\Android_Emulator_Hypervisor_Driver. driver

Then,

  1. Open a Windows command console with administrator privileges.
  2. Go to $ANDROID_SDK_ROOT\extras\google\Android_Emulator_Hypervisor_Driver.
  3. Run silent_install.bat. Make sure you see the desired output from the installer: STATE: 4 RUNNINGresult
like image 74
Doc Avatar answered Sep 30 '22 22:09

Doc