Ad-Hoc builds distributed over the air (OTA)
74 days agoIt is possible to share your test Ad-Hoc builds over the air, so testers won’t need to downlod ipa files and sync them via iTunes. Sometimes testers are having their iOS devices...
It is possible to share your test Ad-Hoc builds over the air, so testers won’t need to downlod ipa files and sync them via iTunes. Sometimes testers are having their iOS devices synced with computers not on their desks so it would be nice to download a version of the without a need to connect the device to the iTunes.
How to do that? It’s quite simple. Do normal steps to archive your app, and while you be generating new ipa file (on the save sheet) select “Save for Enterprise Distribution” at the bottom of the screen.
You need to type to informations there. First – the full path to the place on the network your file will be stored at, second – application name.
And voila! You’ll get to files – ipa itself and special plist file. What to do with that?
Put it on the webserver together with a HTML file like this
<html> <body> <p>Click <a href="itms-services://?action=download-manifest&url= http://testingserver.com/1.0/myapp.plist">HERE</a> to install My App version 1.0 Beta</p> </body> </html>
Now, when the user will open the given page and click the link, safari on the device will understand that given link is acutallu an itunes action to install the application which manifest (the plist file you’ve generated) is linked under url attribute.
Simple, isn’t it?
