Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Storage limit in raw and asset folder in android

I want to store some video/audio files in raw folder of my application.

I don't know the storage limit of raw and asset folder.

Can anybody tell me how much data i can store in raw and asset folder.

And also what if i store bulk data in those folder, does it will affect to speed of execution or size of application to download from market?

Thanks in advance.

like image 689
Mahaveer Muttha Avatar asked Feb 21 '13 06:02

Mahaveer Muttha


People also ask

What should I store in assets folder?

In Android one can store the raw asset file like JSON, Text, mp3, HTML, pdf, etc in two possible locations: assets. res/raw folder.

What does asset folder contain?

The Assets folder typically contains all Assets for creating Characters, Environments, and FX - Meshes, like Materials, Textures, Blueprints, and other source files. Level Assets are not included here. Each subfolder contains the appropriate source files for that Asset.

What is raw folder in Android?

The raw (res/raw) folder is one of the most important folders and it plays a very important role during the development of android projects in android studio. The raw folder in Android is used to keep mp3, mp4, sfb files, etc. The raw folder is created inside the res folder: main/res/raw.

What is a raw asset?

Assets are images, fonts, binary files and other files that do not need processing by Expansive and should be copied "raw" to the dist output directory. Expansive provides a means of listing the assets in your application to optimize the processing of these files.


1 Answers

There is no limits on any resources now after Android2.3 release the new aapt.The limitation is caused by the older aapt for system peformance reason and should not happen now.

like image 148
futurexiong Avatar answered Oct 12 '22 17:10

futurexiong