Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

From today, when I tried to run an app in NetBeans on a 2.3.3 Android platform, it shows me that:

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.

and the Emulator doesn't want to start.

This is for the first time when I see it, and google has no asnwers for this, I tried even with 2 versions of NetBeans 6.9.1 and 7.0.1, still the same error.

share|improve this question
2  
Just curious why you're using NetBeans vs Eclipse. I use NetBeans for other things (namely php), but have just found it easier to use eclipse for android stuff. What in your opinion are the benefits over eclipse? – SBerg413 Aug 28 '11 at 19:12
2  
I just never used Eclipse before, but I don't know why, I hate it, the reason, it's even complicated in GUI vs NetBeans, but for the moment I am downloading it, to try, if the problem disappears, I will make Android stuff only in it. – Denis Hoss Aug 28 '11 at 19:32
17  
Wow, that comment was a comma massacre. Anyway, make sure your AVD is using an appropriate amount of RAM (i.e., enough to run but not more than your computer can handle). This is set when you create the virtual device. – Glendon Trullinger Aug 28 '11 at 19:52
2  
Just for reference, I have a Core i7 with 16gb of ram, maxxed out ram on my AVD's and they are all laggy unfortunately :/ – Jack Aug 28 '11 at 20:35
1  
And how do you maxxed it? – Denis Hoss Aug 28 '11 at 20:53
show 1 more comment

28 Answers

up vote 211 down vote accepted

I figured it out. The problem was in the amount of ram I had specified for the virtual machine, and it was 1024MB, now I have 512MB and it is ok, now I need to find how to improve this amount of ram, 512 is not so much, and the machine is a little bit laggy.

share|improve this answer
11  
I have the same issue with this. I have 8GB of RAM on my machine, with 6GB sitting free while the Android emulator tells me that it can't allocate 1GB? – Strozykowski Nov 11 '11 at 1:38
3  
I have as well 8GB of Ram, but SDK tells me that I can't use it more than 512 :) – Denis Hoss Nov 11 '11 at 7:13
4  
One more fix to add. Sometimes, setting RAM to lower values doesn't work. It that case, try to launch emulator from commandline with something like emulator-x86 -avd <your_avd_name> – m1shk4 Jul 20 '12 at 7:35
6  
Just got the solution : need to specify AVD resolution forcefully : 800 x 1280. It starts my AVD as what I required – Nirav Shah Sep 28 '12 at 9:14
2  
The problem comes from any display skin that adds a value of 1024 to hw.ramSize in the config.ini (Device Ram Size in the Hardware list of the GUI). Make sure to either select a "skin" that has a lower value, or to use a manual resolution and to remove this line from the Hardware list - you can't remove it when a skin is selected. – RedGlyph Nov 2 '12 at 11:49
show 5 more comments

Referring to this link and its first comment under accepted answer, changing "1024" to "1024MB" helped me. Pathetic, but works.

share|improve this answer
13  
'MB' is not recognized by the emulator, forcing it to use the default 256 MB value. Be aware that the amount you specify is not what you will get! – RedGlyph Nov 2 '12 at 10:58
How do you know that? – Fenix Voltres Nov 2 '12 at 11:01
Looking under Apps, Runnning, lists the total amount of memory to approx 240MB, so it seems as it reverts to 256 MB. – jishi Nov 9 '12 at 10:47
Add in Run Configurations window the parameter -memory 512 from this link fixed it for me – GatesReign Dec 3 '12 at 15:14

In my case:

  • Using built in WXGA720 to simulate 720p device, always got this error
  • Manually set AVD resolution to 720 x 1280, works for me

hope it helps~

share|improve this answer

Works with 512 Mb instead. None of the above methods works for me.

share|improve this answer
The "Failed to allocate memory: 8" error disappeared after reducing the RAM size from 1024 to 768 Mib. – curd0 Dec 29 '12 at 23:22
Thanks! this worked for me – user1781367 15 hours ago

Got this error if my device resolution doesn't fit my PC screen.
For example my laptop resolution is 1366x768.
- WVGA800 (480x800) - OK
- WXGA800 (800x1280) - fail (failed to allocate memory)

share|improve this answer
1  
The same happend for me and I've come to the same solution :-) Please note that this cause of the error appeared only after installation of the latest Android SDK. I mean I didn't have this error before for the same configuration of virtual machines. – yvolk Jul 8 '12 at 4:28
Strange thing, but running a WXGA800 with Android 3.2 works well for me on a laptop, while Android 4.0.3 fails – Egor Jul 19 '12 at 10:16
Resolution did it for me too. WXGA800 won't run on my computer. My monitor is 1080p, so I don't know why it wouldn't work. – Patrick Aug 5 '12 at 1:42

Looks like there are a thousand different fixes for this...none of the above worked for me, but what worked was to launch the AVD from the command line emulator-arm.exe @AVD-NAME

Somehow if launched with only emulator.exe, I would get the same error message than when trying to launch via Eclipse.

share|improve this answer
You might have the same issue as me. The DLL files get loaded when you start the emulator from one place and not if you start from another. – mjaggard Oct 4 '12 at 9:53

Everything else you read here and elsewhere is pure conjecture. The only sure-way to fix this problem is vote for this bug report: http://code.google.com/p/android/issues/detail?id=33930

The problem isn't related to emulator resolution or OpenGL, nor how much memory your computer has. I've got 24GB memory in my computer and most of the time I run with hw.ramSize=1024 I get error 8. Other times it works just fine without any configuration changes. I hope you caught that: I did not alter the emulator configuration at all and yet sometimes it runs and sometimes it fails.

There is a high probability it has something to do with memory fragmentation. I recommend reducing the value of hw.ramSize as a temporary workaround.

share|improve this answer

I realized the solution to this problem stems from Eclipse memory allocation when you run the application in normal mode. I just checked the "Run as Administrator" box under the shortcut properties for Eclipse and now it allows me to allocate more memory for the AVD.

Hope that helps.

share|improve this answer
+1 Cool... Worked for me... able to allocate 1GB Ram to Emulator. – 66CLSjY Mar 8 '12 at 12:01

I went through all the other solutions mentioned on this thread and didn't find anything that was working so I dinked around a little. The Google version of the API was failing on me for some reason. I changed it back to the vanilla and no more crashes.

I must have some other issue but maybe this will help somebody...

share|improve this answer
Odd. I was set to the vanilla version, but switching it to the Google API solved it. +1 for the idea anyways! – Paul Oct 3 '12 at 15:53

Have a look at the official issue 33930. There is pointed out, that it may have to do with the start up of OpenGL during the start of the emulator. Others wrote it only crashes when they use WXGA800-skin and suggest to manually set the resolution to 800x1280.

Further there are ZIP-files provided to manually downgrade your android SDK to version 19 and plattform-tools to version 11. This may help as well to temporally fix the issue.

share|improve this answer
1  
Setting the resolution to 800x1280 worked for me... – Ilya Izhovkin Sep 4 '12 at 12:33
This might be related to my issue. The DLL files get loaded when you start the emulator from one place and not if you start from another. – mjaggard Oct 4 '12 at 9:52
There must be more to it. First setting it to WXGA800 then changing it to a manual resolution of 1280x800 still crashes AVD. Only removing the hw.ramSize=1024 solves the issue (you can't do that if WXGA is selected, you need to use a manual resolution settings). – RedGlyph Nov 2 '12 at 11:00

I have 16 GB and a 3.4 Ghz quad core proc in my machine. The virtual machine won't let me run it at 1024 either. I did bump it up to 878MB because it failed at 880 with the same message. This seems to be the most ram I can allocate to the emulator. It is still slow but I'm assuming it is better than 512MB.

share|improve this answer

In my case, changin screen resolution from WVGA720 to WSVGA works for me.

share|improve this answer

I have also encountered with the same problem while starting an emulator from AVD manager and I have overcome this problem by changing the device screen size .I have found that if you are specifying 1024 mb ram then you have to specify the device screen size in hdpi only and if it is 512 mb ram then it should be mdpi or others.So, We can clearly say that ram size should be specify according to the screen size . So, If you are specifying the 1024 ram size while keeping the device screen size in mdpi then it results in the above mentioned error i.e "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."

or

make your options in AVD manager as follows

[2013-01-11 14:44:01 - SDK Manager] hw.sensors.orientation=yes

[2013-01-11 14:44:01 - SDK Manager] hw.camera.front=none

[2013-01-11 14:44:01 - SDK Manager] hw.gps=yes

[2013-01-11 14:44:01 - SDK Manager] skin.dynamic=no

[2013-01-11 14:44:01 - SDK Manager] hw.keyboard=no

[2013-01-11 14:44:01 - SDK Manager] vm.heapSize=32

[2013-01-11 14:44:01 - SDK Manager] hw.ramSize=343

share|improve this answer

I solved by put as storage size 2 times the RAM size, and by putting the SD storage size the same as RAM size.

share|improve this answer

I had the same problem starting the emulator via eclipse. The same avd machine normally works, just today maybe had her days... Anyway starting the emulator via avd manager worked. And probably tomorrow will work again via eclipse.

share|improve this answer
You might have the same issue as me. The DLL files get loaded when you start the emulator from one place and not if you start from another. – mjaggard Oct 4 '12 at 9:51
I am not sure if I understood you correctly. I made following test to confirm: I started my emulator via avd fist, then terminated the emulator and then started the emulator via eclipse debug. So this seems not to be the case if my test really is what you wanted to express. – Diego Frehner Oct 4 '12 at 15:10
Did you try renaming the dll files and then start from eclipse? I think that eclipse starts it with a different path and so it finds the dll files whilst running from AVD Manager might not. – mjaggard Oct 9 '12 at 9:24

I had the same issue but before I got the issue it asked me to capture a video source.

I disabled the camera support and I was able to use 1024MB of RAM.

Using Windows 64bit, Xoom (Android 3.0).

share|improve this answer

I noticed it was related to just one avd all the rest of the ones I have worked fine. I deleted it and created a new one and now it works.

share|improve this answer

I change my monitor DPI settings from the launch options of AVD and synchronized it with the original and current setting of my monitor, and it worked.

share|improve this answer

The problem is in memory fragmentation. OS have to allocate all the ram you specified for vm ( say 1Gb) as one continuous block. Sometimes there is no such block. To fix it close running programs, then run avd and start your virtual machine.

share|improve this answer

What worked for me on Windows was:

1) Closing Eclipse 2) Running Avd UI 3) Closing all running processes, especially ones that are heavy in memory, like Chrome, explorer.exe, etc 4) Start the emulator 5) Win

share|improve this answer

Be sure that IntelHAXM is installed correctly. It's not enough to download and "install" it through the SDK Manager. You need to manually install it from:

android-sdk\extras\intel\Hardware_Accelerated_Execution_Manager

Also, be sure that Intel Virtual Technology is enabled in your BIOS.

Follow the guide on developer.android.com or Intel's installation instructions.

share|improve this answer

I believe this is a problem related to having an old installation in place and then upgrading your Android environment. The AVD's don't seem to work very well in some circumstances.

So put simply: Delete the AVD and recreate it.

share|improve this answer
1  
I don't think this is relevant, as I am using brand new AVDs. Won't down-vote the answer, but I think it is not relevant. – Booger Dec 27 '12 at 17:30

This happens for me and I narrowed it down to the OpenGLES libraries. I don't know why, but I moved all the DLL files out of android-sdk\tools\lib and it all worked fine.

share|improve this answer

Try to check Wipe user data when launching emulator.

share|improve this answer

When using the IntelHAXM accelerated x86 images, this error fires if you set the AVD RAM to anything that is larger then the single largest block of continuous memory the accelerator driver is able to allocate.

As "Dave" mentioned above, this is all about memory fragmentation. Close anything RAM heavy, start your emulator, start everything else you need.

share|improve this answer
I have 12 gb of RAM (50% free) and still have this problem – Fire-Dragon-DoL Jan 20 at 19:59

Simple computer reboot helped me after I installed HAXM and got that error :)

share|improve this answer

In my experience , i have very low space in hard disk. So i made available space in C Drive and also clear C:\Users\xxx.android\avd . Then my problem is sloved.

share|improve this answer

protected by Community Jan 16 at 13:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.