I'm trying to run my first android studio project but I get this error message and the emulator doesn't start :
Created filesystem with 11/4224 inodes and 1302/16896 blocks
Failed to create Context 0x3005
emulator: WARNING: Could not initialize OpenglES emulation, using software renderer.
emulator: WARNING: Requested RAM size of 1536MB is too large for your environment, and is reduced to 1152MB.
emulator: device fd:544
HAX is not working and emulator runs in emulation mode
emulator: The memory needed by this VM exceeds the driver limit.
Cannot set up guest memory 'pc.ram': Invalid argument
After Android Studio is installed
In CMD (Run As Admin) execute this command (Emulator should be closed):
this will set HAXM memory to 1024Mb (max 1800). Set RAM parameter in VDM slightly below this value, like 980
If you are using Mac OS then use navigate to path
/<USER_DIR>/Library/Android/sdk/extras/intel/Hardware_Accelerated_Execution_Manager
and executesudo ./silent_install.sh -m 1024
It seems that the AVD does not like to set the memory in GB. If it does not save the new setting in GB change it to MB.
In Android Studio, version 1.2.1.1:
Go to "Tools -> Android -> AVD Manager -> Chose your device -> Edit -> Advanced Settings -> Change the RAM parameter to 512 Mb.
Save it, and run the App in the Emulator. It should run now.
In my case, this issue happened when I click run twice unintentionally from AVD manager. I resolved this issue by killing the running instance from taskmanager (qemu-system-i386.exe).
I tried the above answers in Android Studio 3.0, but it seems AS 3.0 doesnt allow to change in the IDE screen, or not sure it was some problem with my installation. So I opened the AVD in disk and opened the config.ini, and changed the ramsize there. It worked.
Try restarting your computer!
I was just wrestling with this problem and after an hour of scouring the web to no avail I tried restarting my computer and the problem was resolved.