Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>3 - Steps</p> <ol> <li>Archive &amp; Distribute for Enterprise (check the little box)</li> <li><p>Create a simple web link on whatever site you want to use for this that is along the lines of: <code>itms-services://?action=download-manifest&amp;url=https://www.example.com/apps/myAppManifest.plist"</code></p></li> <li><p>Correct the app link in the "Manifest" plist file that xCode generated. Your manifest.plist will look like:</p></li> </ol> <blockquote> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt; &lt;plist version="1.0"&gt; &lt;dict&gt; &lt;key&gt;items&lt;/key&gt; &lt;array&gt; &lt;dict&gt; &lt;key&gt;assets&lt;/key&gt; &lt;array&gt; &lt;dict&gt; &lt;key&gt;kind&lt;/key&gt; &lt;string&gt;software-package&lt;/string&gt; &lt;key&gt;url&lt;/key&gt; &lt;string&gt;https://www.example.com/apps/myApp.ipa&lt;/string&gt; &lt;/dict&gt; &lt;/array&gt; &lt;key&gt;metadata&lt;/key&gt; &lt;dict&gt; &lt;key&gt;bundle-identifier&lt;/key&gt; &lt;string&gt;com.mycompany.myapp&lt;/string&gt; &lt;key&gt;bundle-version&lt;/key&gt; &lt;string&gt;1.0&lt;/string&gt; &lt;key&gt;kind&lt;/key&gt; &lt;string&gt;software&lt;/string&gt; &lt;key&gt;title&lt;/key&gt; &lt;string&gt;MyApp&lt;/string&gt; &lt;/dict&gt; &lt;/dict&gt; &lt;/array&gt; &lt;/dict&gt; &lt;/plist&gt; </code></pre> </blockquote> <p>So, in summary: The weblink your users see will link to a plist that describes to the iDevice's OS, the software and where to download it. Now, keep in mind that your enterprise license only allows you to distribute to individuals that are a part of your company. It would be wise to make the website secure. </p> <p><strong>UPDATE:</strong> As of iOS 7.1 it is required that the manifest be hosted on an HTTPS link. Just HTTP will not work anymore.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload