Where is my application binary in XCode?

痞子三分冷 提交于 2019-12-09 04:33:46

问题


I've built an app for the iTunes store. However, being a noob to the platform, I can't figure out how to submit the app.

Where is the actual binary that I need to submit to the iTunes store? What folder does it get built in?


回答1:


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"




回答2:


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.




回答3:


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.



来源:https://stackoverflow.com/questions/1452649/where-is-my-application-binary-in-xcode

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