简体   繁体   中英

Upload app to App Store

我已经设置了所有de iTunes Connect内容(快照,说明,标签等),并下载了应用程序加载器,但它要求我输入.app文件,但我不知道如何从中获取.app文件。我的Xcode项目,或者如果我需要证书来完成它或其他事情,请有人可以帮助我吗?

I think you mean the .ipa file, in that case:

1) Product >> Clean Build Folder

2) Change the build target from iPad/iPhone Simulator to iOS Device.

3) Under the Product menu, select Archive. This will build your application and code sign it using the Distribution (Ad Hoc or App Store). Once the build has completed the Organizer window will appear. If it does not, open it using CMD-Shift–2 or Window -> Organizer. If you see a message popup saying “codesign wants to sign using key ”privateKey“ in your keychain.”, select Allow or Always Allow. Go to the Archives tab in Organizer and select your application, if it was not automatically selected, and choose the archive you wish to share.

4) Click the Distribute button. In the next window select that you want to upload to the app store, and click Next. In the Code Signing Identity drop down, select the same Distribution Provisioning Profile specified in the Release configuration. And that's pretty much the steps to upload to the App Store.

A great place to look for answers to questions such as this is the Apple Documentation

In short, you need to:

  • Ensure you have a valid App ID, or wildcard App ID set in the Developer Member Centre
  • Select Product > Archive in Xcode with the project open, making sure you have "iOS Device" selected in the top left corner
  • At the archive screen, you can then select Validate and (if there are no issues) Submit. The build will then appear in iTunes Connect.

The documentation linked above will guide you through this step by step.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM