Reputation: 27
We have one VM at Azure cloud. We want to run the android emulator in android studio and we are using Android Studio(3.5) for development purposes. But while we try to install HAXM to run the android emulator on the android studio I'm facing the error:
Upvotes: 0
Views: 4056
Reputation: 2589
VTx is the Intel Virtualization Extensions for running virtualized workloads. Microsoft use Hyper-V as their hypervisor, on top of which you create virtual machines. HAXM / Android Emulator is a hypervisor itself and so what your trying to achieve is known as nested virtualization.
In order to use nested virtualization you need to select a VM size which supports it, such as D3_v3.
Please refer to this article for detailed instructions and considerations:
https://learn.microsoft.com/en-gb/azure/virtual-machines/windows/nested-virtualization
NOTE: You don't need to install Hyper-V. The article is written for using nested Hyper-V.
Upvotes: 3