Android Emulator on Windows 10

Viewed 27858

I am using Android Studio and VS 2017 on Windows 10.
And I have enabled hyper-v on windows.

I have a problem at emulator as follow.
This is an error screen on emulator


Error Message

Android Emulator closed because of an internal error:
gpu found. vendor id 8086 device id 0x3e92
checking for bad AMD vulkan driver version...
amdvlk64.dll not found. Checking for amdvlk32...
amdvlk32.dll not found. No bad AMD Vulkan driver versions found.
checking for bad vulkan-1.dll version...
vulkan-1.dll version: 1.1.114.0
Not known bad vulkan-1.dll version; continue.

What's the problem?

Please if someone kind enough to help me or direct me to reach a solution. thanks

8 Answers

In C:\Users\<your_name>\.android add a file named advancedFeatures.ini

add these parameters inside the advancedFeatures.ini file

Vulkan = off
GLDirectMen = on

Now Start AVD

Source

In AVD manager, click on the "Edit" icon next to your required virtual device. Then change emulated performance -> graphics from Hardware or None to Software. Works like a charm.

I had this problem. I unplugged the docking station and everything works.

Finally solved this issue. I don't know why it causes troubles but Vulkan-rt doesn't work properly when the Bandicam app is downloaded on PC.

  1. Download the amdvlk64.dll f.e. here - first offered web site in google search
  2. Unzip it and put amdvlk64.dll file into the C:\Windows\System32 (if Win10)
  3. Delete 'Bandicam' through the system.

I get this error suddenly while I am running my code. So how I solve the problem is,

  • Go to AVD Manager.
  • Edit your AVD.
  • Select 'Software GLES2.0' option on Emulated Performance.
  • Click Finish.
  • Start AVD again. enter image description here

I think this is because of the Hyper-V enabled.

Please disable Hyper-V and try again.

Thank you.

This Comment worked finely! I faced this error after re-installing windows ...

In C:\Users<your_name>.android add file advancedFeatures.ini

Vulkan = off GLDirectMen = on

Related