I'm trying to build and run an android application on android studio. (I'm just testing it out, so I created an "Empty Activity" project.) When I build and run the application on the emulator, the emulator crashes with the following errors:
3/29/2018
10:43 PM Executing tasks: [:app:assembleDebug]
10:43 PM Emulator: Warning: Quick Boot / Snapshots not supported on this machine. A CPU with EPT + UG features is currently needed. We will address this in a future release.
10:43 PM Emulator: init: Could not find wglGetExtensionsStringARB!
10:43 PM Emulator: getGLES2ExtensionString: Could not find GLES 2.x config!
10:43 PM Emulator: Failed to obtain GLES 2.x extensions string!
10:43 PM Emulator: Could not initialize emulated framebuffer
10:43 PM Emulator: audio: Failed to create voice `goldfish_audio_in'
10:43 PM Emulator: qemu-system-x86_64.exe: warning: opening audio input failed
10:43 PM Emulator: audio: Failed to create voice `adc'
10:43 PM Emulator: emulator: ERROR: Could not initialize OpenglES emulation, use '-gpu off' to disable it.
10:43 PM Emulator: Process finished with exit code -1073741819 (0xC0000005)
10:44 PM Gradle build finished in 10s 924ms
10:44 PM Emulator: Warning: Quick Boot / Snapshots not supported on this machine. A CPU with EPT + UG features is currently needed. We will address this in a future release.
10:44 PM Emulator: init: Could not find wglGetExtensionsStringARB!
10:44 PM Emulator: getGLES2ExtensionString: Could not find GLES 2.x config!
10:44 PM Emulator: Failed to obtain GLES 2.x extensions string!
10:44 PM Emulator: Could not initialize emulated framebuffer
10:44 PM Emulator: audio: Failed to create voice `goldfish_audio_in'
10:44 PM Emulator: qemu-system-x86_64.exe: warning: opening audio input failed
10:44 PM Emulator: audio: Failed to create voice `adc'
10:44 PM Emulator: emulator: ERROR: Could not initialize OpenglES emulation, use '-gpu off' to disable it.
10:44 PM Emulator: Process finished with exit code -1073741819 (0xC0000005)
What am I doing wrong, and how can I run the android app?