ARkit和Appthinning.plist错误

Rey*_*alS 6 ios app-thinning arkit xcode9beta6

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

我使用了正确的版本.我从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
"
Run Code Online (Sandbox Code Playgroud)

我的问题是我在互联网上找不到解决这些问题的办法.即使在apple developper网站上,也没有列出此错误.

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

Rey*_*alS 2

我用了另一种方法。

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

然后我使用这些命令删除该文件,创建一个新的 ipa 并将其推送到 iTunes 连接上的应用程序加载器。

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