6

我在 Unity 下使用 ARKit 插件创建了一个项目。

我使用了正确的版本。我从 Unity 编译,从 XCode 编译,存档并在 iTunes 连接上发送 (.ipa)。

但是,我收到了这个错误:

"Dear developer,

We have discovered one or more issues with your recent delivery for "Kouji". To process your delivery, the following issues must be corrected:

This bundle is invalid - Your archive contains paths that are not allowed: ( "AppThinning.plist" )

Once these issues have been corrected, you can then redeliver the corrected binary.

Regards,

The App Store team
"

我的问题是我在互联网上找不到解决这些问题的方法。即使在苹果开发者网站上,也没有列出这个错误。

如果有人可以帮助我,那就太棒了!

4

2 回答 2

2

请参考这个答案解决了我的问题

Strip Swift symbols上传到 AppStore 时不要取消选中

检查此图像:在此处输入图像描述

堆栈溢出答案

苹果开发者论坛

于 2017-10-08T08:02:43.903 回答
2

我用了另一种方法。

在 Xcode 中,我没有“发布应用程序”,而是将其导出到应用商店。

然后我使用这些命令删除文件,创建一个新的 ipa 并将其推送到 iTunes 上,连接 App loader。

mkdir extract unzip -qo MyApp.ipa -d extract cd extract ls rm AppThining.plist zip -qry ../MyApp.Fixed.ipa 。

于 2017-11-02T10:51:02.077 回答