According to the apple website iOS 4 should support wireless app distribution. I have been unable to find any documentation at all on how to host your applications for users to download them over wifi/3g.

We are currently enrolled in the standard iPhone dev program, as we don't have over 500 employees. Is this limited feature limited to the enterprise program only?

link|improve this question

2  
I have a pretty detailed writeup of the process of doing your own over-the-air install here: aaronparecki.com/How_to_Distribute_your_iOS_Apps_Over_the_Air – aaronpk Aug 3 '11 at 18:19
feedback

9 Answers

up vote 24 down vote accepted

If you don't have an entreprise account. You won't have the unlimited or very large pool of devices you can add to your account distribution profiles. BUT, even with normal accounts you can definitely create an Ad Hoc distribution profile (limited to 100 devices) and use the Xcode 3.2.3 "Build and archive" + "Share app / Distribute for entreprise" feature. This will create a .IPA app bundle that already contains the distribution profile. All you need to do is create a web page on some server containing a link with some special scheme.

For instance: <a href="itms-services://?action=download-manifest&url=http://www.myserver.com/ota/myapp/appname.plist">Install My App over the air</a>

link|improve this answer
Is there some official documentation that describes this? – Chris Brandt Jul 2 '10 at 21:21
2  
posted official (pre-release) docs below as a possible 'answer' – Chris Brandt Jul 6 '10 at 20:09
1  
There's now also testflightapp.com -- a neat website that helps you take advantage of this feature to distribute beta builds on the 'net. – CraigD Jan 26 '11 at 23:24
@François P. Can you tell me, do I have to add all UDIDs for all devices to profile? Can someone I don't know with his iPad download and install my app without giving me his device UDID?! – Almas Adilbek Jan 12 at 3:59
feedback

Found a guide on how to get wireless app distribution working. You do not need to be part of the enterprise program for this to work.

http://jeffreysambells.com/posts/2010/06/22/ios-wireless-app-distribution/

link|improve this answer
feedback

The official documentation is no longer tagged as pre-release (and no longer requires a dev login):

http://help.apple.com/iosdeployment-apps/#app43ad871e

link|improve this answer
1  
Apple has now removed the article from this link. The updated url is help.apple.com/iosdeployment-apps – Bart Sipes Jan 16 at 17:21
Thanks @BartSipes , I've updated my answer. – JosephH Jan 16 at 17:32
feedback

Check out Diawi, it's a tool to deploy your development iOS applications directly to your devices using iOS 4 wireless app distribution mode.

http://www.diawi.com

You just need to upload your .ipa/.mobileprovision to get an install url that will work directly on your iPhone

link|improve this answer
feedback

Hockey is a really useful project for wireless app distribution. It has all the server side ready to make it easy to distribute the apps. It also contains an iOS module that can be used to auto-update the apps.

Source here: https://github.com/TheRealKerni/HockeyKit

link|improve this answer
That link seems to be dead now :-( – JosephH May 24 '11 at 20:14
I updated it :) – Dimitris May 24 '11 at 23:58
feedback

I wrote this blogpost hoping it to be helpful to someone
http://blog.encomiabile.it/2010/12/21/ios4-and-wireless-application-deploy

Any comments/suggestions are appreciated :)

link|improve this answer
feedback

I just did a test and, despite Apple's document saying this is only for enterprise accounts, it works with standard developer accounts, too.

link|improve this answer
feedback

iPhone OS 4 enables enterprises to securely host and wirelessly distribute in-house apps to employees over Wi-Fi and 3G. Apps can be updated without requiring users to connect to their computers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.