Updating enterprise iOS apps while retaining some files of the current app bundle

不问归期 提交于 2019-12-12 01:35:37

问题


Currently, to deploy our enterprise app, we get the client to download the latest app build bundle and install it using the iPhone Configuration Utility. Unfortunately when they uninstall the current build of the app, it removes all its related files on the device. They need to uninstall the app before being able to install the new build of the app.

Is there a way to update to the new build while retaining some of the existing files on the device so that the entire app isn't completely reset (e.g. logging and setting files)?

There doesn't seem to be an update enterprise app mechanism unlike the regular app store, or have I missed a feature somewhere?


回答1:


Another approach is to update OTA (over the air); this will replace the app "in place" as long as the bundle id is the same (suggest you use a new version number). You can deploy this yourself using an XML file per the Wireless App spec, or use a solution such as EASE (Enterprise App Services Environment) [http://www.apperian.com/ease]. In either case, the apps will be replaced on the springboard as soon as the app successfully installs.



来源:https://stackoverflow.com/questions/4467428/updating-enterprise-ios-apps-while-retaining-some-files-of-the-current-app-bundl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!