tags:

views:

366

answers:

2

Hi,

I am creating an Android application.

My Application has audio and png files which i have saved in res/drawable folder.

When i run the app , its giving error

Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

and in the logcat it says -

ERROR/PackageManager(54): Couldn't copy package file to temp file.

I tried creating new avd also.But i am getting the same error.

I want all those png and audio files.

I dont want to store them in sdcard.

Please Suggest me how to solve this problem.

Thanks in Advance

A: 

In this thread Vishal said:

this problem comes with android 1.5 .. try 2.0 or 2.0.1

Macarse
A: 

If I'm not mistaken Android Market apps are limited to 25MB. In any case, such a big app won't be installed by many because of the limited application memory of most Android devices.

If you have so many resources, consider to store them on the SD card securely. This question might point you in the right direction:

http://stackoverflow.com/questions/2697644/downloading-game-assets-to-sd-card-on-android

hgpc