I've developed an iPhone/iPad application which is 100 Mb. It contains images and static libraries.

Does app store is so smart, so when users download new version of application updater will download only changed files?

Thank you.

link|improve this question

62% accept rate
feedback

1 Answer

App Store Updates:

When an App is updated, the previous version is completely removed from the device, and the updated version is installed in its place. HOWEVER, all the files in: NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); and all the key/value's in [NSUserDefaults standardUserDefaults] persist through the update.


iOS Updates:

Updates will now only contain the changes - Announced at the 2011 WWDC

Some more articles reporting on it:
apple-shows-ios-5-with-new-notification-system-delta-updates-twitter-integration-and-much-more
ios-5-supports-ota-delta-software-updates
ios-5-over-the-air-update
beta-4-of-ios-5-released-by-apple-over-the-air
ota-everything
ios-5-to-allow-some-ota-updates-through-3g

link|improve this answer
No, this used to be the case but iOS 5 actually does delta updates. – omz Oct 14 '11 at 23:27
Huh? This is only for iOS updates not third party apps AFAIK? – Rog Oct 14 '11 at 23:55
That's what I had originally thought also, @Rog. I did some more digging and it does appear that the OTA delta's are only for iOS version updates and App Store Updates still work the same. – chown Oct 15 '11 at 0:01
feedback

Your Answer

 
or
required, but never shown

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