I have an iPad application that during beta testing may need a small code update here and there, but has a large number of graphics assets (300MB+).

Is there a way of creating a partial .ipa file that just has the changes instead of re-installing the whole application along with graphics files each time?

link|improve this question
feedback

2 Answers

Short answer: NO!

Explanation:

Apple gives you no means to do so !!!

The .ipa is just a .zip file. So it seems on the first look, that you can do it.

But there are 2 problems

  1. You need direct access to the iOs Devices. You normally don't have it for your Beta-Tester.
  2. You will need to sign your code again. This you can only do on your local machine, because you need your private key for the task
link|improve this answer
feedback

No, what you are thinking of would be considered a "patch". Apple forces you to update the entire app bundle. Take the Tomtom app for example. The app is right around 1.5GB's so for small minor changes they would need to reupload the entire 1.5GB bundle.

link|improve this answer
Yes I guessed so. Its a bit of a stinker! Workaround suggestions? – Spencer Westwood Nov 8 '11 at 16:21
I agree. What I have done in the past is if there is a feature I can control / update remotely, I would go that route so you don't have to upload such a large package or wait for the review process. – WrightsCS Nov 8 '11 at 16:43
feedback

Your Answer

 
or
required, but never shown

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