Reputation: 171
I'm trying to increase a Genymotion 2.3 emulator in order to test my app. Is there any way to accomplish this? I can't find a way to configure the emulator.
Upvotes: 1
Views: 4632
Reputation: 9326
To increase heap size in Genymotion, please do the following -
adb shell
.su
mount -o remount,rw /system
vi /system/build.prop
dalvik.vm.heapsize=256m
to your liking. Here 256m is 256mbUpvotes: 2
Reputation: 10977
I don't think you need to increase the genymotion heap size. Do you mean you want to increase the size of the virtual device memory? You can do this in the virtual device settings. You can find them in the dialog where you start the devices from.
Upvotes: 0
Reputation: 2317
This post mentions how to do it. But I don't know how or what or where the root shell is to execute that command or to change those values. They are not present in the build.prop files that are in the system-images folder. Anyone knows how to do this?
Thanks
Upvotes: 2