I am going to install first application in my android phone, but having some doubts related to Android Memory (Maximum size of APK).

So please help me know and solve the problems:

  1. What is maximum size of the apk that can be supported by the android ?
  2. When we install any apk file in real phone, where does application installed (in SD-card or other memory) ??

I have referred this link: http://groups.google.com/group/android-developers/browse_thread/thread/7965885da4d1a03a and also searched lot.

I came Across the search on the web that many people are facing the same issue What is the maximum size of Application supported by Android. I think this question also help to the people who are connected with Android application programming and development.

Update:

This time i am having 58Mb application from that 52.5MB Images and it runs on the my HTC Hero mobile but On Emulator, it shows an error:

Failed to upload my_application.apk on device 'emulator-5554'
java.io.IOException: Unable to upload file: No space left on device
Launch canceled!

Now please suggest me the way to store images inside the Drawable folder? is there any way to zip the images or such method?

link|improve this question

Please check out "Update" where i actually needs your help... – Paresh Mayani Aug 25 '10 at 5:29
Just out of curiosity, why do you need 52.5MB of images? I don't think anyone is actually going to download that! – CaseyB Aug 25 '10 at 22:01
1  
@CaseyB thanx for the interaction and actually the application is for the image purpose ...its doesnt matter whether anybody download or not..its requirement – Paresh Mayani Aug 26 '10 at 4:05
Checkout i have uploaded one more question facing regarding "memory" related issues, please help me and catch me out..please stackoverflow.com/questions/3584297/… – Paresh Mayani Aug 28 '10 at 6:26
feedback

2 Answers

up vote 11 down vote accepted
+100
  1. Its probably device specific as devices has a different amount of memory available for application. ref http://groups.google.com/group/android-developers/browse_thread/thread/18cbb2404778618e?pli=1

  2. Its application dependant. The developer may state that the app should be preferrebly install on internal memory, the SD-card, or to let the user choose from SD-card and memory. This is only supported on Android 2.2. On older version of android, version <= 2.1, the app will be installed into the memory. Its defined inside the AndoridMainfest.xml via the android:installLocation element. It supports the values internalOnly, preferExternal or auto. But again, only supported on Android 2.2. ref http://developer.android.com/intl/de/sdk/android-2.2.html#api

I tested on my HTC Desire with more than 500 MB of memory. With almost none apps installed I can install an apk that is 43MB, but an apk that is 57MB is too large, even i got plenty of available memory... it fails with

Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]

The "File Manager" application tells me that im using 60/147MB (40%). The limit seems be 147 MB, but in practice, as i have tested, this is not true...

Update:

I did some testing, and published the results here:

link|improve this answer
Also, If you would like to test it, you may put a large file into the res/raw folder. – Vidar Vestnes Aug 21 '10 at 6:03
@PHP_Jedi really helpful answer....i am using Android 1.5 HTC Hero, what about it? – Paresh Mayani Aug 21 '10 at 6:17
@PHP_Jedi what i have to if i want to install 52MB application – Paresh Mayani Aug 25 '10 at 5:31
@Paresh, You need at lease 104MB of free application memory before trying to install, I'm not sure if that is possible on Android 1.5. Please use the File Manager app to verify and check how much you have available. – Vidar Vestnes Aug 25 '10 at 9:17
@PHP_Zedi but when i am running it for the first time in emulator, however it shows an space related error, as such it is the first application we install, there should be enough space and my application is of 52 MB and it is also happened on the phone also – Paresh Mayani Aug 25 '10 at 9:28
show 6 more comments
feedback

Today i came across one point where it is clearly defined that we can upload maximum 50MB sized APK onto the market. So indirectly, we can install an application from a market having maximum 50MB size.

Here is a link: http://www.google.com/support/androidmarket/developer/bin/answer.py?hl=en&answer=113469 , here just check the below sentence.

APK file size: Maximum supported size is 50MB.

So its clear that we can upload maximum 50MB sized APK file, but if we are developing application locally and running/testing for the internal purpose then it is fine.

Update - 6 Mar 2012

Android Apps Break the 50MB Barrier and expanding the Android app size limit to 4GB., check this tutorial.

link|improve this answer
that seems cool, +1 for updating the answer. ;) – Lalit Poptani Mar 6 at 8:58
@LalitPoptani thanx dear. – Paresh Mayani Mar 6 at 8:59
Hello Prakesh, I think you misunderstood the size, In The second line of tutorial has noted that APK size limit is still 50 MB but you wan upload 2 extra files that file has maximum limits 2 GB each. ====== from tutorial === "The size of your APK file will still be limited to 50MB to ensure secure on-device storage, but you can now attach expansion files to your APK." – KPBird Mar 19 at 8:49
feedback

Your Answer

 
or
required, but never shown

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