ios 我在 Xcode 中的应用程序二进制文件在哪里提交?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1452649/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 16:25:34  来源:igfitidea点击:

Where is my application binary in Xcode to submit?

iosiphonebinaryapp-store-connect

提问by AngryHacker

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

我为 App Store(前 iTunes 商店)构建了一个应用程序。但是,我不知道如何提交应用程序。

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

我需要提交给 App Store 的实际二进制文件在哪里?它内置在哪个文件夹中?

回答by ge0ff73

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"

您可以使用 XCode 并在左侧展开“产品”。突出显示您的 .app,然后在上面显示“操作”的位置下拉并选择“在 Finder 中显示”

回答by vpathak

Look at a path something like this:

看看这样的路径:

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

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

You can run "find" to locate it.

您可以运行“查找”来定位它。

回答by pzearfoss

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

<Project Name>.build` 包含编译期间创建的所有目标文件

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.

您可能正在寻找诸如“Release-iphoneos”之类的东西。在该文件夹中,您应该找到要提交的 .app 包。