Gino
Gino

Reputation: 674

Windows 7 64bit android AVD start error:Failed to allocate memory: 8

I just updated to Android SDK Tools r20, and try to create avd base on android 4.1 and WXGA, but I got error message when I start AVD.

config.ini:

hw.mainKeys=no
hw.lcd.density=320
sdcard.size=512M
skin.name=WXGA720
skin.path=platforms\android-16\skins\WXGA720
hw.cpu.arch=arm
hw.keyboard.lid=no
abi.type=armeabi-v7a
hw.cpu.model=cortex-a8
vm.heapSize=48
hw.ramSize=1024
image.sysdir.1=system-images\android-16\armeabi-v7a\

error message:

Starting emulator for AVD 'android4.1'
Failed to allocate memory: 8
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.

Error was only output when i chose WXGA skin, whichever 720 or 800 I saw Failed to allocate memory: 8 page to find solution and tried to change ram size, but didn't solve my problem.

My system environment:

OS: windows 7 64bit
memory: 4GB 

I tried to start android 4.0.3 WXGA in windows 7, got same error. But same machine in Ubuntu 64bit android SDK tools r18, create android 4.0.3 WXGA, start normal.

So, what can I do for this problem?

Upvotes: 21

Views: 17042

Answers (5)

khigianguyen
khigianguyen

Reputation: 139

Modify config.ini file like that:

hw.ramSize=1024 --> hw.ramSize=1024M

and it should work like charm...

Ref: http://www.fantageek.com/102/strange-avd-with-hw-ramsize/

Upvotes: 4

Sheharyar
Sheharyar

Reputation: 75820

Are you running the emulator on your Laptop?

This problem also occurs if the Emulator's Screen Resolution is greater than that of your Display. For example WXGA-xxx (1280x800) could crash if your screen resolution is (1366x768).

Try using WSVGA. Does a good job as a Tablet.

Upvotes: 1

android developer
android developer

Reputation: 116000

try to update the ADT&SDK .

if that doesn't help , try to do total uninstallation of the ADT&SDK of android . even delete the ".android" folder , and in the end install them again.

Upvotes: -3

Kodsnutten
Kodsnutten

Reputation: 270

This seems to be a problem with SDK Tools r20, in which the amount of RAM can not be set from the AVD Manager for the WXGAxxx skins (and the default 1024 MB is too much for the 32 bit emulator).

Workaround

You can work around the issue by starting the AVD from the command line, and hard set the amount of memory to something lower:

> cd c:\program (x86)\android\android-sdk\tools\
> emulator @android4.1 -memory 896

The above command line will set the amount of memory to 896 MB for the AVD. This bug can be followed here: http://code.google.com/p/android/issues/detail?id=36080

Upvotes: 16

WhutMao
WhutMao

Reputation: 1

Degrading SDK Tools from r20 to r18 will solve the problem. You need to do this by Uninstall ing r20 and reinstalling installer_r18-windows.ex.

Upvotes: -1

Related Questions