Elmar
Elmar

Reputation: 41

How to create an update on iOS

Hi i'm trying to create and distribute an update/patch for my app on app store. Does anyone know how to made it in the best way? Thanks

Upvotes: 3

Views: 533

Answers (2)

Erez Rosovsky
Erez Rosovsky

Reputation: 633

Apple does not have an interface for hot-patching production native apps, if it's a hybrid app many of the JavaScript platforms allow to upload new JS, so some functionality might be fixed / replaced / etc. I have also seen more hardcore solutions like this one a Lua script that you can load and patch your app remotely (might be in Apple's gray lines)

We @ Rollout.io created an SDK that allows you to remotely hot-patch native production applications, you can read more on how here.

Disclaimer: I'm a Rollout.io co-founder.

Upvotes: 6

Frederick Cheung
Frederick Cheung

Reputation: 84114

There's no such thing as a patch or pure update - you release a full version of the app with the changes you require.

Upvotes: 2

Related Questions