Reputation: 8828
I have 11 videos to include in my App. Each of them is around 9MB. Besides those, I have to a few sound files and image files in the app. Therefore the app size is going 100+MB. Is there any way to accommodate all the files so that app size does not become an issue for me?
Upvotes: 0
Views: 507
Reputation: 2499
You can upload into youtube or make your own simple video streaming server
Upvotes: 0
Reputation: 11251
I would suggest you to put them in the assets
folder, so they will not be compressed.
This way you'll have problems testing your project with eclipse, so try building it with command line, and then install on device with adb
In my scenario, I had 300+ videos, totalling upto 400+ MB of the size. I checked with few of them and deployed the app the way i just told.
may not be the best way around, but may work.
Upvotes: 0
Reputation: 64429
The most common sollution i've seen is downloading them during the first run of the programme. Just check if everything is available, and if it isn't, download the needed files.
pros:
Cons:
Upvotes: 0
Reputation: 32940
Puh..that's quite large. In such a situation I'd
Still, downloading nearly 100MB won't be ideal, but better than directly download all of it at the first install. (IMHO)
Upvotes: 0