将 iOS 应用上传到商店时出错

将 iOS 应用上传到商店时出错

问题描述:

我正在尝试将我的应用上传到商店,但我得到的是:

I'm trying to upload my app to the store but here is what i get:

我以前做过什么::

1- 从 plist.info 文件中删除 armv7s

1- removing armv7s from plist.info files

2- 仅对活动架构禁用编译

2- disabling compile for active architecture only

有什么想法吗??

根据错误,我推测您的架构构建设置包括 arm64 以外的架构,但您指定了 arm64 作为 Info.plist 中所需的设备功能.您应该从 Info.plist 中删除该要求,或者将 Architectures 构建设置设置为 arm64.

Based on the errors I would speculate that your Architectures build setting includes architectures other than arm64, but you specify arm64 as a required device capability in your Info.plist. You should either remove that requirement from your Info.plist or set the Architectures build setting to just arm64.