Best way for uploading binary Application Loader or Xcode organizer

不打扰是莪最后的温柔 提交于 2019-12-23 10:19:47

问题


I want to know best way for uploading binary to itunestore. Is it through Application loader or using Xcode organizer archive build, validate and submit.


回答1:


You don't use Application Loader in Xcode 4 anymore. You can only upload through the Xcode Organiser...

As zekel mentions below, you can still use Application Loader to submit your IPA files. The Xcode Organiser method is useful if you are building the app yourself and want to validate and submit from one place. Application Loader method is useful if you have the IPA signed to the correct certificates installed on your system.

After using both methods, Application Loader gives you more indication of progress status which is useful if you are on a slow connection.




回答2:


There are significant differences which I've tried to list below (as of Xcode 6.3.2 - Jun 2015):

Xcode Organiser

  • The application to submit must be selected from the list of your locally archived apps (you cannot browse to a specfic file)
  • Gives option to 'Validate' your app before submitting
  • At validate/submission time will download/sync all the provisioning profiles associated with the selected Apple developer account and re-sign/re-embed the application with the appropriate one (it does indicate which one's get selected but you cannot override this)
  • Gives option to automatically upload the debugging symbols that are included in the archived application
  • NO upload progress
  • (Gives the option to Export to an *.ipa which could be used with Application Loader)

Application Loader

  • Requires you browse to an *.ipa file for its input
  • No option to Validate before submitting
  • Uses the provisioning profile that is already embedded in the *.ipa file
  • NO way to upload debugging symbols
  • Gives upload progress



回答3:


A sole developer or small team might just submit directly from Xcode, especially for a smaller project. But for a larger team, more complex project, or an automated build system, submitting from the Application Loader is easier.

It's a matter of workflow more than anything else.




回答4:


I mostly use Application Loader it is best because:

It just requires you browse to an .ipa file.

We need not to worry about the provisioning profile that is already embedded in the .ipa file.

NO way to upload debugging symbols

We need not to Validate before submitting.

We can see the progress bar where and what is the status of app uploading.



来源:https://stackoverflow.com/questions/6991658/best-way-for-uploading-binary-application-loader-or-xcode-organizer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!