tags:

views:

762

answers:

2

I am unable to find a clear explanation in the Apple docs on what the difference is between a development and distribution provisioning. I am currently using a the development provisioning to develop and test on my iPhone. I intend to distribute the application to my beta tests and I wondering:

  • Do I need to use distribution provisioning?
  • Should I make a .mobileprovision file for each individual tester or I can I make one for all of them?
+3  A: 

A development profile is used for testing your app when in the development stage.

Distribution profiles are of two types

  1. For adhoc testing
  2. For submission to the App store

Adhoc testing is when you have completed development and want to distribute your app to multiple users for testing (your second question). Just create a distribution profile for adhoc testing and select all the device ids for which the profile is valid. In that case you will only need to send the .app file and .mobileprovision file to each user testing your app.

For submission of the app to app store, you will have to create a distribution mobileprovision file with the "App Store" option selected.

lostInTransit
+2  A: 

I think the development profile lets you run the app in the debugger, while the ad hoc profile does not. (That's what I've observed anyway, assuming it is supposed to behave that way.)

Chris Lundie
It appears to me that it automatically adds a set of entitlements... probably including the ability to run the debugger. I bet that you can add these yourself in the entitlements plist for your distribution profile if you wish... Other than that I cannot see any different between the two types of profiles. I would be interested to hear from someone who knows the details of this.
Pat Niemeyer
Another difference between the development and distribution profiles is the expiration date. The development profiles last about 3 months while the distribution profiles look like they're good for a year.
John Lemberger