Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know if the heap size on Android phones is a constant value according to what is set in the OS version or if this is a setting which the phone producers can decide on?

Is the heap size proportional to the amount of RAM on the phone?

I've only found articles where people say that the heap size of an application is 16M. However, these articles are a bit old. From what I see, as an example, heap sizes vary from around 20M up to 24M on one specific model. This phone has 768M of RAM.

share|improve this question
if der is 30mb total heap to app. and if only 7 mb is alloted and remaining is free, can reaming memory be used by other apps? – Chaitanya Chandurkar Apr 1 at 18:26

6 Answers

up vote 10 down vote accepted

Does anyone know if the heap size on Android phones is a constant value according to what is set in the OS version or if this is a setting which the phone producers can decide on?

Technically, it is a setting which the phone producers can decide on. Android is open source. I do not recall the Compatibility Definition Document spelling out heap size requirements, though I haven't looked recently.

Is the heap size proportional to the amount of RAM on the phone?

No, it tends to be based more on screen resolution, as higher-resolution screens tend to want to manipulate larger bitmaps, so Google makes heap size recommendations that, hopefully, device manufacturers will abide by.

I've only found articles where people say that the heap size of an application is 16M.

Searching StackOverflow on [android] "heap size" turns up this answer.

share|improve this answer
Yes, I saw that answer too. I was just wondering if there were any guidelines to this, and if the RAM has anything to do with it. I guess we'll just have to hope that manufacturers abide by Google guidelines. Thanks for your input. I was asking this because I saw an increase in OutOfMemory issues for a specific phone. – Eric Nordvik Mar 18 '11 at 13:30

Some more device info extracted from build.prop files (adb -d pull /system/build.prop):

Phones (Android Version):

  • HTC Wildfire (2.2.1) = 16MB
  • HTC Wildfire S (2.3.5) = 20MB
  • HTC Salsa (2.3.3) = 20MB
  • HTC Desire (2.3.3) = 32MB
  • HTC Desire S (2.3.5) = 32MB
  • Samsung Galaxy S GT-I9000 (2.2) = 48MB
  • Samsung Galaxy R GT-I9103 (2.3.5) = 64MB
  • Samsung Galaxy Y GT-S5360 (2.3.5) = 64MB

Tablets (Android Version):

  • Samsung Galaxy Tab GT-P1000 (2.2) = 48MB
  • Sasmung Galaxy Tab 8.9 GT-P7300 (3.2) = heapstartsize 5MB, heapgrowthlimit=64MB, heapsize=288MB
  • Sasmung Galaxy Tab 10.1 GT-P7500 (3.2) = heapstartsize 5MB, heapgrowthlimit=64MB, heapsize=288MB
  • Acer Iconia A500 (3.2.1) = 5/48/256MB
  • Kindle Fire HD 7" (4.0.3) = 5/48/256MB
  • Asus Transformer Prime TF201 (4.1.1) = 5/48/256MB
share|improve this answer
Samsung Galaxy S3 - 256MB – tomash Sep 14 '12 at 15:07
Worth noting that the manifest application attribute android:largeHeap="true" appears to increase the available heap space from the "heapgrowthlimit" value to the "heapsize" value. This will vary by device, though. – dokkaebi Jan 8 at 19:07

The "VM Budget" that an application is allowed to use varies from device to device. Tablets typically permit a larger budget than phones.

Here are some VM budget sizes I've found for various devices.

  • G1 = 16 Mb
  • Droid = 24 Mb
  • Nexus One = 32 Mb
  • Xoom = 48 Mb
  • GalaxyTab = 64 Mb.

(Note: if you've found differently, let me know)

share|improve this answer
HTC Desire (v 2.3.3) = 32MB Samsung Galaxy R GT-I9103 (v 2.3.5)= 64MB – spatialist Mar 30 '12 at 9:00

Not only phone producers, but anyone who creates a version of the Android OS, can specify the maximum allowed heap size, based upon the specific requirements of their devices. Some Android roots, such as CyanogenMod, even allow the user to select the heap size herself as a setting.

You can detect the maximum allowed heap size using the method

Runtime.getRuntime().maxMemory();

Additional information on this topic is available here.

If your app normally needs more than 16MB of heap, a suggested approach would be to set a minimum OS version level in your manifest that ensures that the overwhelming majority of those downloading your app will have at least the amount that you need, and then find a way to degrade your functionality gracefully in a way that reduces your heap requirements as needed, down to a base level of 16MB, for the small number of users with less than your optimal amount of heap who fall through that sieve.

share|improve this answer

You should be able to check the max vm heapsize using:

getprop dalvik.vm.heapsize

at Android terminal (connectbot or adb shell etc). It is possible to remount read-write and set the heap size in the build.prop file as well. (Make sure you have recovery installed so you can re-set it if you accidentally make it too small, it won't boot up).

share|improve this answer

There is actually a defined minimum application memory that depends on the screen size and density:

Mobile devices typically have constrained system resources. Android devices can have as little as 16MB of memory available to a single application. The Android Compatibility Definition Document (CDD), Section 3.7. Virtual Machine Compatibility gives the required minimum application memory for various screen sizes and densities. Applications should be optimized to perform under this minimum memory limit. However, keep in mind many devices are configured with higher limits.

Quoted from: http://developer.android.com/training/displaying-bitmaps/index.html

But as others have stated, each device manufacturer decide the actual value for the device, so it could be greater than this (but not smaller).

The mentioned Compatibility Definition Document (CDD) listing the minium requirements: http://source.android.com/compatibility/downloads.html

For Android 2.3:

Device implementations with screens classified as medium- or low-density MUST configure Dalvik to allocate at least 16MB of memory to each application. Device implementations with screens classified as high-density or extra-high-density MUST configure Dalvik to allocate at least 24MB of memory to each application. Note that device implementations MAY allocate more memory than these figures.

For Android 4.2, a table, example entry:

small / normal / large size and xhdpi density: 64MB

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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