Reputation: 6194
What exactly will get updated when someone updates their app? Does it update external data files in the bundle, overwrite them, replace them...?
Upvotes: 2
Views: 201
Reputation: 54445
First off, there are no "external data files in the bundle" - the bundle is your application binary and some authentication data, etc. and is replaced when the app is upgraded. However, any data that you transfer from your bundle to your application's document directory, or simply write directly to the document directory is retained when the app is upgraded.
In short:
Your application bundle is replaced in it's entirety.
Data stored in your application's document directory is retained.
Upvotes: 4