Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you beta test an iPhone app? I can get it on my own device, and anyone that gives me a device, I can run it on theirs, but is there a way to do a limited release via the app store for beta testing?

Answer: iOS 4.0 and later: Instructions on wirelessly distributing your application to beta testers.

Related: Also, see this question on getting your app onto phones without using the App Store.

share|improve this question
The link should have the beta subdomain removed... – Porges Jun 21 '10 at 2:17
@Porges: link fixed. – progrmr Jun 21 '10 at 14:57

9 Answers

up vote 328 down vote accepted

Creating ad-hoc distribution profiles

The instructions that Apple provides are not very concise or clear. This is how I created a general provisioning profile that will work with multiple apps, and added a beta tester.

My setup:

  • Xcode 3.2.1
  • iPhone SDK 3.1.3

Before you get started, make sure that..

  • You can run the app on your own iPhone through Xcode.

Step A: Add devices to the Provisioning Portal

  1. Send an email to each beta tester with the following message:

    To get my app on onto your iPhone I need some information about your phone. Guess what, there is an app for that!

    Click on the below link and install and then run the app.

    http://itunes.apple.com/app/ad-hoc-helper/id285691333?mt=8

    This app will create an email. Please send it to me.

  2. Collect all the UDIDs from your testers.

  3. Go to the Provisioning Portal.

  4. Go to the section Devices.

  5. Click on the button Add Devices and add the devices previously collected.

Step B: Create a new provisioning profile

  1. Start the Mac OS utility program Keychain Access.

  2. In its main menu, select Keychain Access / Certificate Assistant / Request a Certificate From a Certificate Authority...

  3. The dialog that pops up should aready have your email and name it it.

  4. Select the radio button Saved to disk and Continue.

  5. Save the file to disk.

  6. Go back to the Provisioning Portal.

  7. Go to the section Certificates.

  8. Go to the tab Distribution.

  9. Click the button Request Certificate.

  10. Upload the file you created with Keychain Access: CertificateSigningRequest.certSigningRequest.

  11. Click the button Aprove.

  12. Refresh your browser until the status reads Issued.

  13. Click the Download button and save the file distribution_identify.cer.

  14. Doubleclick the file to add it to the Keychain.

  15. Backup the certificate by selecting its private key and the File / Export Items....

  16. Go back to the Provisioning Portal again.

  17. Go to the section Provisioning.

  18. Go to the tab Distribution.

  19. Click the button New Profile.

  20. Select the radio button Ad hoc.

  21. Enter a profile name, I named mine Evertsson Common Ad Hoc.

  22. Select the app id. I have a common app id to use for multiple apps: Evertsson Common.

  23. Select the devices, in my case my own and my tester's.

  24. Submit.

  25. Refresh the browser until the status field reads Active.

  26. Click the button Download and save the file to disk.

  27. Doubleclick the file to add it to Xcode.

Step C: Build the app for distribution

  1. Open your project in Xcode.

  2. Open the Project Info pane: In Groups & Files select the topmost item and press Cmd+I.

  3. Go to the tab Configuration.

  4. Select the configuration Release.

  5. Click the button Duplicate and name it Distribution.

  6. Close the Project Info pane.

  7. Open the Target Info pane: In Groups & Files expand Targets, select your target and press Cmd+I.

  8. Go to the tab Build.

  9. Select the Configuration named Distribution.

  10. Find the section Code Signing.

  11. Set the value of Code Signing Identity / Any iPhone OS Device to iPhone Distribution.

  12. Close the Target Info pane.

  13. In the main window select the Active Configuration to Distribution.

  14. Create a new file from the file template Code Signing / Entitlements.

  15. Name it Entitlements.plist.

  16. In this file, uncheck the checkbox get-task-allow.

  17. Bring up the Target Info pane, and find the section Code Signing again.

  18. After Code Signing Entitlements enter the file name Entitlements.plist.

  19. Save, clean, and build the project.

  20. In Groups & Files find the folder MyApp / Products and expand it.

  21. Right click the app and select Reveal in Finder.

  22. Zip the .app file and the .mobileprovision file and send the archive to your tester.

    Here is my app. To install it onto your phone:

    1. Unzip the archive file.

    2. Open iTunes.

    3. Drag both files into iTunes and drop them on the Library group.

    4. Sync your phone to install the app.

Done! Phew. This worked for me. So far I've only added one tester.

share|improve this answer
20  
+1 for detailed step by step answer. This helped me immensely. – samfu_1 Mar 24 '10 at 16:41
3  
I wish I could give you more points for this answer… invaluable, thank you – prendio2 May 12 '10 at 21:35
24  
Easy as 1, 2...54, thanks apple! – Error 454 May 6 '11 at 17:16
5  
can you update our answer for XCode 4 please? – Umair Ashraf Jun 27 '11 at 10:50
7  
this blog post by jj0b musicalgeometry.com/?p=1237 adds xCode 4 steps to the ad hoc distribution process – hokkuk Nov 2 '11 at 13:35
show 16 more comments

There's a new service out called "Test Flight", and it addresses this issue directly. Feel free to find more info here - http://testflightapp.com/

share|improve this answer
1  
From my experience, TestFlight is a much better solution than anything else out there. – Josh Brown Feb 2 '11 at 6:16
This one is about 10x prettier than "ibetatest.com", which is currently voted higher here. It also really explains all the steps in using itself, while ibetatest was resorting to a very dry video to explain the process. – DanF May 7 '11 at 21:39
1  
Thanks DanF. We've been using this service for quite some time now, and we have to say, it's much, much better than than anything we've used to date. – Jason May 17 '11 at 8:01
How does Testflight do it? – beryllium Feb 17 '12 at 21:31

Craig Hockenberry explains how he did it for Twitterrific.

share|improve this answer

In case you'd want to find some beta testers, there a special service has sprung up recently targeting iPhone apps beta testing: ibetatest.com

share|improve this answer
something similar for Android? – lambdor Jan 11 '11 at 11:39

Note that there is a distinction between traditional "beta testing" which is done by professional QA engineers, and "public beta testing" which is releasing your product to the public before it's ready : )

You can do "beta testing" -- loading to specific iPhones/iPods your testers will be using. You can't do "public beta testing" -- pre-releasing to the public.

share|improve this answer
Except that a lot of companies seem to do it all the time. – Michael Todd Feb 16 '12 at 20:16

You should really check out the wireless distribution stuff. The .zip file/iTunes method is archaic :)

http://www.readwriteweb.com/mobile/2010/12/apple-best-kept-secret-how-to-do-ad-hoc-installs.php

note the blog post in step 8

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

share|improve this answer
I added that type of testing to the question a few months ago.. See the first link in the question ;) – Michael Pryor Feb 28 '11 at 22:14

Apple's documentation has a tutorial on how to test and distribute your app.

share|improve this answer

Using testflight :

1) create the ipa file by development certificate

2) upload the ipa file on testflight

3) Now, to identify the device to be tested on , add the device id on apple account and refresh your development certificate. Download the updated certificate and upload it on testflight website. Check the device id you are getting.

4) Now email the ipa file to the testers.

5) While downloading the ipa file, if the testers are not getting any warnings, this means the device token + provisioning profile has been verified. So, the testers can now download the ipa file on device and do the testing job...

share|improve this answer

Just thinking through this now, I would suggest you create a simple key system using an external database. That is, put your app in the app store publicly, but slap a BETA label on the icon.

enter image description here

Image generated by app icon gen

As soon as the app is opened, just put a link to your website and require beta sign up. The website issues batches of users beta keys. A valid user id/password is required to start up your app each time.

When the app is ready for prime time, update the icon, remove the BETA label, and remove the required log in screen after the update.

I'm not sure this approach would pass Apple's app store testing or if having a public beta would invalidate your app/cause rejection. Many apps require sign up to even start them (e.g. banking apps etc), so it's reasonable that your app could require sign up to start as well.

share|improve this answer

protected by Will Aug 4 '10 at 15:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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