I have 70MB video file and i want to play through raw folder but app is not launching how to add this video file in asset/raw folder in android?
2 Answers
The size limit is 1MB. (although I havent found this in android docs but found this info from several other links). So better to split you video in different raw files which size will be less than 1MB and use from them.
Also remember that you can not upload an apk which size is more than 50mb in google play. So if you want that you will need apk expansion files too.
Helpful Links
Its quite clear from Documentation that your apk size can be uptu 4 GB. So there will be now issue to keep one 70 MB file inside raw folder. See Android Break Limitation of 50 MB
APK size depends largely on draw able, Assets and Raw folder
Issue : Generally bigger size of apk does not installed on device or they create issue while installing.
If you are compelled and do not have server then keep it inside raw else keep video at server download it once application run first time save in Local Memory

- 1
- 1

- 11,935
- 4
- 61
- 87
-
1Thanks for your reply.But My Requirement is to store video in raw folder not on Server so when running application it is giving In Sufficient Storage please suggest me. – user Apr 16 '13 at 07:38
-
2you can set android:installLocation="preferExternal" inside Manifest – Tofeeq Ahmad Apr 16 '13 at 08:04