How to create an iOS update

Hi I am trying to create and distribute an update / patch for my app in the app store. Does anyone know how to do this in the best way? Thanks to

+3


source to share


2 answers


There is no such thing as a patch or a clean update - you release the full version of the application with the required changes.



+2


source


Apple does not have an interface for hot-swap native apps, if it is a hybrid app, many JavaScript frameworks allow new JS to be loaded, so some functionality could be fixed / replaced / etc. I've also seen more hardcore solutions like a Lua script that you can download and patch your application remotely (maybe in Apple's gray lines)

We @ Rollout.io have created an SDK that allows you to remotely run your own apps to create your own fixes, you can read more about how here .



Disclaimer: I am the co-founder of Rollout.io.

+6


source







All Articles