iPhone development – what is the difference between a development and distribution provisioning?

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.

Leave a Comment