Reputation: 1
i am using android studio 3.1.3
while building ill get those errors
Emulator: emulator: ERROR: x86 emulation currently requires hardware acceleration!
Emulator: Process finished with exit code 1
Upvotes: 0
Views: 108
Reputation: 1098
Firstly while creating the emulator you have to tick mark the hardware selection option. You could delete the chosen AVD and create a new one.
Read more in the docs and here.
Also as rightly suggested, to make an emulator your Virtualization should be enabled in the BIOS.
Upvotes: 0
Reputation: 170
The Android emulator needs sometimes hardware acelleration features, so that's why it prompts the error.
You have here all the documentation about the Hardware Acelleration and a full explanation how to install it:
Documentation Configure Emulator graphics rendering and hardware acceleration
If you dont wan't to read the full doc, here's what you need to do:
extras\intel\Hardware_Accelerated_Execution_Manager
and install intelhaxm-android.exe
**If it prompts an error about virtualization technology you should enable it on your BIOS, there's a lot of tutorials on internet depending on your O.S
Hope it helps you
Upvotes: 0
Reputation: 82
If you have Intel processor try to install HAXM either from SDK manager or from intel website. You should also check if Hardware Virtualization is enabled in BIOS.
Upvotes: 1