XXXXXX.app cannot be installed on [DEVICE NAME] XXXXX.app requires the “” capability which is not supported by [DEVICE NAME
I got this error while try to install in device, any one ever faced same situation ?
I am using Xcode 7.2
XXXXXX.app cannot be installed on [DEVICE NAME] XXXXX.app requires the “” capability which is not supported by [DEVICE NAME
I got this error while try to install in device, any one ever faced same situation ?
I am using Xcode 7.2
Go to info.plist and delete required device capabilities
or add all neccessary architectures like arm7
and arm64
or else which your device required.
Hope this will help :)
You have to Add arm7 and arm64 to your Required device capabilities
under the .plist file.
It is require to run your app on Your Device.
It's require to support the processor of your device.
Simulator doesn't contain any processor So it will run your application but Device can not.
In your application capabilities (.plist file in Required device capabilities
), you have set to use one that is not available on the device you are using.
If you give more details about the device / OS version, I might be able to give you a more detailled answer.
Check your .plist file in "required device capabilities". Maybe you have an item that is not properly entered and Xcode is detecting it as an actual capability to have.
Check your info plist's Required Device Capabilities. Probably you have a typo there.
Check you info.plist file for Required device capabilities
typo mistakes.
refer this link for more detail: Xcode error "Can't install application ... [appname].app requires the " z" capability which is not supported by [devicename]
Try removing the Scheme from the scheme setting and add it once again it solved my issue.
I had same problem when I used connect via Network
. I removed iPhone from connected devices and connected again
Open your info.plist and delete the arm64 from "Required device capabilities" and it will work.
© 2022 - 2024 — McMap. All rights reserved.