Question

I am looking for information on the iOS Enterprise Developer Program. From what I read, in-house distribution allows companies to distribute iOS apps internally without knowing the devices UDIDs (unlike what happens with the ad-hoc distribution). Apps built with these profiles can be technically installed on any iOS device (without limits on the number of devices), but the license agreement says we can't distribute enterprise apps to anyone outside the company.

From what I read, we can distribute apps through any medium we want within the enterprise. In our case, we want to put the .ipa and its .pliston our intranet (protected via authentication). Our users can just browse to that site with any iOS device, type in their credentials, click on the link and install the app. That's great.

But how updates work? I can't find information on this topic. If I create a new version of the app, all devices are updated automatically without my intervention?

Was it helpful?

Solution

Updates have two different scenarios - 1) Server driven updates where you don't need to modify your code. In this case your App should be intelligent enough to poll server for any updates, download them, and reconfigured itself. I am doing this for our native Apps. And 2) You have updated the code. In this case you will need to re-install the App on each device to update it.

In your case I think you are looking for solution to scenario-2. You can implement something similar to what Apple does when you submit updated version to Appstore. They display updated apps in Updates section and you re-install the App. You can have some section in your app that check if there is an updates and calls itunes service with your HTML link which will directly give pop-up to users asking for installing updated app. Second option you can use Push notification after you have updated .ipa and .plist file with updated version information.

OTHER TIPS

Other options include using an MDM (mobile device management) or MAM (mobile application management) solution.

MDM solutions allow users who have "enrolled" to have new updates pushed, however, users have to request the updates and be prompted to install them manually. There is also no way for users to receive push notification messages unless they install additional client apps.

MAM solutions can provides support over the entire app lifecycle (including updates). One vendor solution that provides this is Apperian EASE, which allows users in an organization to install and run in-house apps. For more information see http://www.apperian.com.

EASE can notify all users who have installed an app that there is a new version (update) via push notification (this happens via the custom native app catalog).

Developers can use the EASE SDK to put in a query to the server to see if a new update is available, and/or required, and if so, to automatically install the update. The EASE SDK documentation is located at https://apperian.jira.com/wiki/display/pub/EASE+SDK+Guide.

Having updated your app upload it on same location as before. So all the users just need to reinstall.Then it will work properly with new changes made in app.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top