Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Distribute Enterprise app in house

I built an app for a company, then they bought an Enterprise license and are now ready to distribute the app. I have been following this article: Distributing Your Application In-House I have successfully created the .ipa file, but then it just says "Distribute the iOS App file using MDM." with no link or any explanation of what that means. Further research is just making me more confused. I've found articles like this: Add MDM servers which uses terms like "MDM Vendor". What the heck is an MDM Vendor? Surely the Apple Enterprise program comes with a method to distribute an app without having to buy 3rd party software, no? Is there any kind of tutorial out there that can tell me step-by-step instructions for how to distribute this app in layman's terms that I can understand? Thanks.

like image 897
user3925803 Avatar asked Jul 01 '15 09:07

user3925803


People also ask

What is an enterprise app how do you distribute it?

An Enterprise App Distribution platform allows organizations to securely deploy and manage policy-enabled mobile apps through a variety of distribution methods, including direct links to users, a corporate portal, a private app store, or MDM/EMM systems.

How do I distribute IPA without App Store?

Distributing via Ad-hoc (Apple Developer Enterprise Program)Modify the manifest (. plist) file with the correct URL for your IPA. This url will be the HTTPS url to the IPA file for your app. Just replace the highlighted text with the correct URL to your IPA file.


1 Answers

You can distribute your Enterprise app without MDM. The way it works is basically you upload the .ipa file and a manifest .plist file to a website somewhere. Then you just put a hyperlink that connects to the .plist file. The end user uses a browser on their device, taps the link, and it installs the app on their device automatically. An easy-to-follow tutorial can be found here. The only problem is that the tutorial uses an older version of xcode that generates the .plist file for you. Xcode 6 will not generate the .plist file, but you can find a sample file here. Just replace the URL of the .ipa file, the bundle identifier, bundle version, and title with your own values.

like image 110
user3925803 Avatar answered Sep 21 '22 05:09

user3925803