我的应用程序二进制文件在 Xcode 中的哪里提交?
我已经为 App Store(前 iTunes 商店)构建了一个应用程序。但是,我不知道如何提交应用程序。
我需要提交到 App Store 的实际二进制文件在哪里?它内置在哪个文件夹中?
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 Store? What folder does it get built in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 XCode 并在左侧展开“产品”。突出显示您的 .app,然后转到顶部显示“操作”的位置,将其下拉并选择“在 Finder 中显示”
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"
查看如下路径:
“/Users/{user}/Library/Developer/Xcode/DerivedData/{appname-somehash}/Build/Products/Debug-iphoneos/{app-name}.app”
您可以运行“ find”来定位它。
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.
默认情况下,您将在包含项目的目录中看到一个构建目录。
在该构建目录中:
.build` 包含编译期间创建的所有对象文件以及一系列具有以下命名方案的文件夹:
您可能正在寻找类似“Release- iPhone”。在该文件夹中,您应该找到要提交的 .app 包。
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 compilationand a series of folders with the following naming scheme:
You're likely looking for something like "Release-iphoneos". In that folder you should find the .app package to submit.