Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update In-House Apps -- iOS Enterprise Developer Program

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?

like image 360
Dev Avatar asked Oct 31 '12 09:10

Dev


1 Answers

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.

like image 112
Cimarron Buser Avatar answered Sep 19 '22 14:09

Cimarron Buser