How do I submit an iOS app WITHOUT Xcode?

前端 未结 5 1234
日久生厌
日久生厌 2020-12-02 06:32

I am a contract developer. I have written an app (yes, using Xcode!) for a client and now we are ready to ship. I would like to send him a copy of his app which he can sig

5条回答
  •  Happy的楠姐
    2020-12-02 07:23

    I have accepted chown's answer as the correct one since it is very detailed and led me to the eventual solution, but I wanted to add this bullet-list answer for any future viewers who might want to see things cheat-sheet style.

    Building the binary

    • Edit schemes.
    • Set archive scheme to use RELEASE configuration.
    • Make sure code-sign for RELEASE uses client's App-Store profile.
      • Get this the same way you did in Xcode 3.2, you need his profile, certificate and private key.
    • Build ARCHIVE.
    • SHARE archive.
      • DO NOT RE-SIGN!

    Send binary to client

    (Email or whatever.)

    Client uses ApplicationLoader to upload.

    Watch out for this Xcode/Newsstand problem

    (Go up-vote that Q&A if you ran into the problem and it saved your bacon! :)

提交回复
热议问题