How should I understand "Save for Development Deployment" in Xcode for iOS app?

13,289

Solution 1

1) As apple integrated testflight in itunes connect so when you select "Save for Ad Hoc Deployment" then you can distribute your app to users with designated devices. The app will be code signed with the distribution certificate. i.e it will use distribution certificate which we used to submit app on appstore. Previously when you use "Save for Ad Hoc Deployment" then you can create an ipa from development profile also. but now on it requires distribution certificate for "Save for Ad Hoc Deployment".

2) When you select "Save for Development Deployment" then you can distribute your app using development profile. it just like previously we did with "Save for Ad Hoc Deployment". i.e you can create your ipa file using development certificate also and you can distribute this ipa to your client and testers who's device id is present in your provisioning profile.

Solution 2

With Ad Hoc Development Apple gives you an URL to send to your registered testers. With Development Deployment, your users have to install the .ipa.

Share:
13,289
ifeegoo
Author by

ifeegoo

Time is limited,less is more. Not all of us can do great things, but we can do small things with great love.

Updated on June 12, 2022

Comments

  • ifeegoo
    ifeegoo about 2 years

    In Xcode 7.0 or above,when we archive the project and want to export the archive file as .ipa file,we have the four options:

    enter image description here

    We have a new option:"Save for Development Deployment".

    I don't know what's the difference between "Save for Ad Hoc Deployment" and "Save for Development Deployment".

    I called the Apple official support phone service for help,but he told me he's not clear and if I want to get more technical details,I can send emails to the professional help,and then he only sent me some official documentation on the Apple.com.

    I have searched the Apple official documentation,I found this:

    App Distribution Guide

    Exporting Your App for Testing Outside the Store

    To distribute your app to users with designated devices, select “Save for Ad Hoc Deployment.” The app will be code signed with the distribution certificate.

    To distribute your app for internal testing, select “Save for Development Deployment.” The app will be code signed with your development certificate.

    Acorrding to the above words.It seems that:

    Same point:
    Both of them are for internal use.

    Different points:
    1.“Save for Ad Hoc Deployment.” for internal distribution,but “Save for Development Deployment.” for internal testing?
    2.The difference between “Save for Ad Hoc Deployment.” and “Save for Development Deployment.” is distribution certificate and development certificate?

    Note:I have heard that "development certificate" belongs to the individual person but distribution certificate belongs to the whole team,I'm not quite sure about this.

    So,who can tell me what's the purpose of "Save for Development Deployment",and what's the difference between "Save for Development Deployment" and “Save for Ad Hoc Deployment.”?