tags:

views:

19

answers:

1

I am getting an insufficient storage error in android. I have about 100MB of data in my res/raw folder.Is this the reason. PLease anyone give me a solution. I created another AVD 2 but its not working the error is still coming PLease help me Thanks in advance.

+1  A: 

Your res/raw folder will be put onto the phones internal memory and this space is very limited. 100Mb for an application is rediculous size (see here).

The android market has an apk file size limit (can't find documentation for this) but from reference above 45Mb is too large. Also 100Mb over 3G would take forever...

If you really need the files you should consider having your app download the resources it needs to the SD card.

stealthcopter
what I have to do store my resources in the SD card
Jacob
Well your whole application will get stored in the phones internal memory, so you will need to download them separately. This means writing some (or copying) download code that will be ran on the first use of the app. 100Mb is still crazy, what are the files?
stealthcopter