I have an application that stores a lot of data in the assets folder (html, audio, video, etc.). I use the file:///android_assets to access these files. But due to the apk size limitation of 50 MB imposed by the market I will be migrating these files to a storage card. Is it possible to install the application on phone memory and have the assets directory on the storage card, so that they can still be accessed using file protocol?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Since assets are part of your apk, it's not possible to separate them or move them to the sdcard. You can enable "Move to SD Card" for your app, but that doesn't help with the 50 MB market limit.

One solution would be to store the data files on the web and not include them in the apk. When your app is launched for the first time after installation, you would kick off a one-time process that downloads them to the sdcard.

Once the files are on the sdcard, you can access them with:

file:///sdcard/<your_directory>

Or to get a File reference to the sdcard root directory:

File sdCard = Environment.getExternalStorageDirectory();
link|improve this answer
Yes,I have done the same.Moved everything to the SDCard. The data contains lot of images which are displayed in a custom list along with text. After moving this data to external storage the performance of the app has degraded. The list scroll is not as smooth as it was when the data was in the assets. Any pointers on how to improve the performance ? – Salil Apr 7 '11 at 3:15
feedback

Your Answer

 
or
required, but never shown

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