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

发布于 2024-08-04 20:28:45 字数 109 浏览 4 评论 0原文

我已经为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

海之角 2024-08-11 20:28:45

您可以使用 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"

初吻给了烟 2024-08-11 20:28:45

查看如下路径:

“/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.

何以畏孤独 2024-08-11 20:28:45

默认情况下,您将在包含项目的目录中看到一个构建目录。
在该构建目录中:

.build` 包含编译期间创建的所有对象文件

以及一系列具有以下命名方案的文件夹:

<build setting>-<platform>

您可能正在寻找类似“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 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文