在设备中安装时无法安装应用程序错误
Can't install application error while installing in device
XXXXXX.app cannot be installed on [DEVICE NAME] XXXXX.app requires the “” capability which is not supported by [DEVICE NAME
我在尝试在设备中安装时遇到此错误,有人遇到过同样的情况吗?
我正在使用 Xcode 7.2
在您的应用程序功能(Required device capabilities
中的 .plist 文件)中,您已设置使用您正在使用的设备上不可用的功能。
如果您提供有关设备/OS版本的更多详细信息,我可能会为您提供更详细的答案。
检查 "required device capabilities" 中的 .plist 文件。也许您有一个未正确输入的项目,并且 Xcode 将其检测为实际拥有的能力。
检查您的信息 plist 的必需设备功能。可能你打错了。
检查您的 info.plist 文件是否有 Required device capabilities
拼写错误。
参考此 link 了解更多详情:Xcode error "Can't install application ... [appname].app requires the " z" capability which is not supported by [devicename]
转到 info.plist 并删除 required device capabilities
或添加所有必要的架构,例如 arm7
和 arm64
或者您的设备所需的其他架构。
希望这会有所帮助:)
您必须将 arm7 和 arm64 添加到您的 Required device capabilities
.plist 文件下。
需要 运行 您的设备上的应用程序。
它需要支持您设备的处理器。
模拟器不包含任何处理器,因此它将 运行 您的应用程序但设备不能。
尝试从方案设置中删除方案并重新添加
它解决了我的问题。
我在使用 connect via Network
时遇到了同样的问题。我从已连接的设备中删除 iPhone 并重新连接
打开你的 info.plist 并从“所需的设备功能”中删除 arm64,它就会工作。
XXXXXX.app cannot be installed on [DEVICE NAME] XXXXX.app requires the “” capability which is not supported by [DEVICE NAME
我在尝试在设备中安装时遇到此错误,有人遇到过同样的情况吗?
我正在使用 Xcode 7.2
在您的应用程序功能(Required device capabilities
中的 .plist 文件)中,您已设置使用您正在使用的设备上不可用的功能。
如果您提供有关设备/OS版本的更多详细信息,我可能会为您提供更详细的答案。
检查 "required device capabilities" 中的 .plist 文件。也许您有一个未正确输入的项目,并且 Xcode 将其检测为实际拥有的能力。
检查您的信息 plist 的必需设备功能。可能你打错了。
检查您的 info.plist 文件是否有 Required device capabilities
拼写错误。
参考此 link 了解更多详情:Xcode error "Can't install application ... [appname].app requires the " z" capability which is not supported by [devicename]
转到 info.plist 并删除 required device capabilities
或添加所有必要的架构,例如 arm7
和 arm64
或者您的设备所需的其他架构。
希望这会有所帮助:)
您必须将 arm7 和 arm64 添加到您的 Required device capabilities
.plist 文件下。
需要 运行 您的设备上的应用程序。
它需要支持您设备的处理器。
模拟器不包含任何处理器,因此它将 运行 您的应用程序但设备不能。
尝试从方案设置中删除方案并重新添加 它解决了我的问题。
我在使用 connect via Network
时遇到了同样的问题。我从已连接的设备中删除 iPhone 并重新连接
打开你的 info.plist 并从“所需的设备功能”中删除 arm64,它就会工作。