at the first setup, Android Studio asked me that how much ram does the emulator going to use. I entered 800M but it worked slowly. I need to make it a little bit bigger like 1.5GB. How can I do that? Is it editable after the first setup?

- 179,855
- 19
- 132
- 245

- 1,705
- 4
- 15
- 27
-
2Possible duplicate of [Why emulator is very slow in Android Studio?](http://stackoverflow.com/questions/16732021/why-emulator-is-very-slow-in-android-studio) – Frederic Klein Oct 16 '16 at 08:29
4 Answers
I generated a Pixel 2 image in the past and those values were locked to match the HW default of 1536
MB, so to edit them I had to "Show on disk" (from ADV manager) and edit the hw.ramSize
keys in hardware-qemu.ini
and config.ini

- 2,999
- 3
- 28
- 23
-
4
-
-
-
Also need to delete `hardware-qemu.ini.lock` file and let it get generated automatically by running the emulator again. – imgkl Aug 31 '23 at 22:15
My answer seems to be old, so for recent versions check this answer
Go to Tools->Android->AVD Manager
, there's something like pencil to edit your AVD
click on that, then in the pop-up window click Show Advanced Settings
and there you can change the RAM
size.

- 2,176
- 2
- 22
- 41
-
I was testing my app's on the virtual device instead of Note 5 that has samsung modified Android. It was running so slow. Thank you so much. – Arda Çebi Oct 16 '16 at 08:32
-
-
30
-
3
Create a new virtual device from the AVD Manager.
Select New hardware profile(left-bottom corner) in the appearing window.
You can see an option Memory in the new secondly appeared window. Here you can change the ram size in the column RAM.

- 1,085
- 13
- 24
-
The problem is already this. There is a minimum RAM setting in the emulator. I need to change this. Otherwise doing the thing you suggested with this answer is impossible. The first answer works. – Arda Çebi Jan 29 '18 at 11:40
-
Please note if you make a new profile you won't be able to choose a device with google play services – Fernando Torres Dec 15 '21 at 01:52
or you can create a new hardware profile, that allows you to choose the amount of ram avaliable. Also you can change the number of CPU cores in the hardware-quemu.ini and config.ini on the device files.

- 11
- 3