16

In Xcode, after archiving you can click "export" to generate an .ipa that you can then distribute outside of the App Store. However, there are several options for exporting. Namely:

  • Save for iOS App Store Deployment
  • Save for Ad Hoc Deployment
  • Save for Enterprise Deployment
  • Save for Development Deployment

What are the differences between this four methods?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Diego
  • 577
  • 4
  • 14

2 Answers2

6

As far as I can tell, the only difference is the provisioning profile that is included within the .ipa file. Also, if you have not generated the profile that is needed, Xcode will automatically generate it for you:

  • If you choose "Save for iOS App Store Deployment", a regular distribution profile will be used.
  • If you choose "Save for Ad Hoc Deployment", an Ad Hoc distribution profile will be used.
  • If you choose "Save for Enterprise Deployment", an In House distribution profile will be used.
  • If you choose "Save for Development Deployment", a regular development profile will be used.

I had a lot of problems trying to understand this and I came to the conclusion that Apple, in trying to make things "simpler," they made things a lot more confusing and harder to understand. In my opinion it's always better to know what you're doing instead of having the machine do it automatically for you.

Diego
  • 577
  • 4
  • 14
  • 7
    If you choose "Save for Ad Hoc Deployment", an Ad Hoc distribution profile will be used. ....repeating each option as its own definition is of little use. – Josh Mar 21 '17 at 09:50
  • @Josh for the second option you can kind of infer what the button does, but it can still be confusing as it doesn't say anything about provisioning profiles. I think the title of the buttons should read "Save using X provisioning profile" – Diego May 04 '17 at 19:46
0

From Apple's own documentation:

Choose a Distribution Method and Options Documentation

Clay Ellis
  • 4,960
  • 2
  • 37
  • 45