3

我正在尝试上传我的应用程序以进行试飞。当我使用网络界面时,我得到了错误

解析 IPA 出现意外错误,已通知 TestFlight 支持。

当我尝试使用桌面应用程序上传时,它告诉我找不到 dSYM,让我完成整个过程,然后在最后给出同样的错误。

桌面应用程序中的屏幕

内置 XCode 4.5,用于部署目标 5.0。

我查看了Error Upload TestFlight : Invalid IPA / dSYM not found,据我所知,我所有的构建设置都设置为 armv7。

有什么明显的东西我应该检查/可能会丢失吗?

项目中仅有的 2 个外部库是 test flight sdk 和 flurry。

4

1 回答 1

0

I've had the same problem when trying to upload .ipa files. The problem is, that .ipa files don't contain the symbolication information anymore.

Try exporting your app as Xcode Archive instead of building the .ipa for distribution (thats one of the options when you choose 'Distribute...' in the Xcode organizer). This archive contains the necessary dSYM files (if not, you have to check your build settings). If you drop this .xcarchive into the TestFlight desktop client, TestFlight will build the .ipa for you and the upload it.

Make sure to use the same Provisioning Profiles for signing the .ipa in the TestFlight client that you have used when building the archive in Xcode!

Or you can just choose to Show the TestFlight Co-pilot in the menu bar (activate in the settings), the it will automatically detect your Archive.

于 2013-08-02T22:29:22.313 回答