tags:

views:

252

answers:

2

Hi,

I have created iphone application to play some video files. I kept all the video files in application bundle. I want to know that what is the upper limit of resource size that we can put on resource?

In my case the total video file size is 500 MB. Is 500 MB is ok with iphone application?

Thanks, Jim.

A: 

I've seen apps that big in the store before. Users don't like it as gh install process needs 2x the size of the app, but it works.

You can also try compressing the video more or streaming it for better size. There is a 10mb limit for ota downloads, so remember that too as many users only download ota.

chpwn
+1  A: 

Look at the answer to the similar question.
Have in mind that downloading and installing such large app may be real pain for users.

Vladimir
Thanks for your answer.
Jim