vinay
vinay

Reputation: 361

updating an app in code

I wish to update the app in future, so what are code to be added in my present app, so that it detects the changes in the updates and implement the changes automatically. Notes related to the topic is more helpful... Thanks in advance

Upvotes: 1

Views: 116

Answers (2)

Buntylm
Buntylm

Reputation: 7373

For updation of your iOS App Once you submit a new version and is approved by Apple, your previous binary will no longer be available to the consumer, your latest binary will be the only version of the application available in the AppStore.

This means that new users will only download the latest version and existing users will got the notification for new updated version and they can skip versions when updating. Versions must be standalone and not "patches" for previous versions.

In Appliation there is no need to add any kind of code that tell user for updation.

Upvotes: 2

Kaptain
Kaptain

Reputation: 1348

You can't update an app in code

Upvotes: 3

Related Questions