IOS Enterprise Distribution Through OTA

后端 未结 8 1332
梦毁少年i
梦毁少年i 2020-11-28 01:55

We have build an enterprise iPad App and now we want to give it to our employees. Initially when testing, we used ad-hoc distribution collecting all the test device\'s UDID

相关标签:
8条回答
  • 2020-11-28 01:55

    As of December 2011, these are the steps:

    1. Create a provisioning profile in your Apple Enterprise account
    2. Set this as the Code Signing Identity under the Build setting of your app.
    3. Make sure the Bundle ID matches that of the provisioning profile.
    4. Select Product > Archive to build IPA file.
    5. Click Share (aka Distribute) button after selecting your Archive.
    6. Set Contents radio button to iOS App Store Package (.ipa)
    7. Make sure Identity in dropdown is the one used from Enterprise account.
    8. Click Next
    9. Select the check box "Save for Enterprise Distribution"
    10. For Application URL put in the URL that points to where the ipa file will be placed (example: http://oursite.com/myApp.ipa)
    11. Click Save. This will save a plist & an ipa file for you.
    12. Place these files on your server with a link formated like this:
      <a href="itms-services://?action=download-manifest&url=itms-services://?action=download-manifest&url=http:/oursite.com/myApp.plist" id="text">
    13. Go to this page from your device and click the link to install the app
    0 讨论(0)
  • 2020-11-28 02:04

    You do not need to manage UDIDs if you are using an enterprise profile.

    To install an enterprise app you need a provisioning profile built with your distribution certificate on each device. See Does an iPhone Enterprise provisioning profile need to specify phone UUIDs like an ad-hoc provisioning profile does?

    0 讨论(0)
  • 2020-11-28 02:06

    Probably the best way to distribute your enterprise mobile app and then securely manage users, groups, data and devices is using a Mobile Device Manager (MDM) tool suite.

    iOS provides specific APIs that support enterprise deployment via MDM products with API level features like Per App VPN connections that allow you to firewall a DMZ application server to only connect to a specific signed client iOS app. The vendors also provided authentication SSO integration and encrypted storage on the devices to sandbox your enterprise apps from other untrusted personal apps on a BYOD device.

    Here's the Gartner 2013 review of MDM products:

    • http://www.business.att.com/content/whitepaper/Gartner-MDM-MQ.pdf

    The 3 major players are now: Air Watch, Mobile Iron and Citrix XenMobile.

    NOTE: I don't work for or have a vested interest in any MDM vendor.

    0 讨论(0)
  • 2020-11-28 02:12

    There are two solutions

    1. Try testflightapp.com

      It does everything for you. It even has a SDK which I found very useful in debugging scenarios with logs and crash reports.

    2. If you are looking to have your own hosted solution for the enterprise then http://hockeykit.net/ is the best bet.

      It has a client application which makes the upgrade process painless. It also have a server side code which you can deploy on your server.

      https://github.com/TheRealKerni/HockeyKit


    1. Update 2013-11-23:

      We have been using Diawi happily for quite some time.

    0 讨论(0)
  • 2020-11-28 02:13

    I've created tool (it's beta, so please be patient with it:)) for generating manifests from ipa file online:

    http://manifest-generator.knejzlik.cz/

    It generates plist with index.html file. All you need is to put content of downloaded archive to your site.

    0 讨论(0)
  • 2020-11-28 02:15

    You can use hockey, diawi etc. but sometimes you just want something simple that allows you to host it on your server. I was searching for a simple, basic php script that can do this but did not found any that suited my needs so I wrote a simple single php file server by myself and you can find it here:

    https://github.com/leszek-s/LSIPASERVER

    It has a list of all uploaded ipa files, upload page with password protected upload and each uploaded ipa has it's own page so you can send a link to specific uploaded ipa to someone. Feel free to use it on your own server.

    0 讨论(0)
提交回复
热议问题