Where is my application binary in Xcode to submit?

前端 未结 3 1687
别那么骄傲
别那么骄傲 2021-02-04 00:43

I\'ve built an app for the App Store (ex-iTunes store). However, I can\'t figure out how to submit the app.

Where is the actual binary that I need to submit to the App

相关标签:
3条回答
  • 2021-02-04 01:40

    By default, you'll see a build directory inside the directory containing your project.
    In that build directory:

    <Project Name>.build` contains all the object files created during compilation

    and a series of folders with the following naming scheme:

    <build setting>-<platform>
    

    You're likely looking for something like "Release-iphoneos". In that folder you should find the .app package to submit.

    0 讨论(0)
  • 2021-02-04 01:42

    Look at a path something like this:

    "/Users/{user}/Library/Developer/Xcode/DerivedData/{appname-somehash}/Build/Products/Debug-iphoneos/{app-name}.app"

    You can run "find" to locate it.

    0 讨论(0)
  • 2021-02-04 01:46

    You could use XCode and on the left expand "Products". Highlight your .app and then go up top where it says "Action" drop that down and select "Reveal in Finder"

    0 讨论(0)
提交回复
热议问题