I have an app on App Store and I have to create another app. This other app have some same functionalities than the first app. So I wanted to create a Framework to put the common code in the framework and use it inside with apps. Unfortunately, this framework has to change to add more features and improvements.
I saw that dynamic libraries can update the library code without any change on app already pushed on App Store, but this is reserved for Apple. Also, since iOS8, we can create dynamic framework which include dynamics libraries. So is it possible to have the same, meaning if I update my dynamic framework, it updates also the app without having to push to App Store again and face app review process?
If not, do you have some clues/recommendation to achieve that ?
Thank you
CodePudding user response:
Dynamic Framework is a bit different from the understanding you have. Please read apple documents in more detail for that.
Currently only way to achieve what you expect is to push code on App Store as hidden, and based on some server API configuration update your content accordingly (Firebase Remote Config is one such good example if security is not that big a concern)