5

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

Jojodmo
  • 23,357
  • 13
  • 65
  • 107
Prashant Tukadiya
  • 15,838
  • 4
  • 62
  • 98

9 Answers9

8

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 :)

Ketan Parmar
  • 27,092
  • 9
  • 50
  • 75
3

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.

Dhruv Khatri
  • 803
  • 6
  • 15
2

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.

David Ansermot
  • 6,052
  • 8
  • 47
  • 82
2

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.

Olivier
  • 118
  • 11
2

Check your info plist's Required Device Capabilities. Probably you have a typo there.

stefos
  • 1,235
  • 1
  • 10
  • 18
2

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]

Community
  • 1
  • 1
0

Try removing the Scheme from the scheme setting and add it once again it solved my issue.

Vikram Sinha
  • 581
  • 1
  • 10
  • 25
0

I had same problem when I used connect via Network. I removed iPhone from connected devices and connected again

europeec
  • 398
  • 4
  • 8
0

Open your info.plist and delete the arm64 from "Required device capabilities" and it will work.

Talha Rasool
  • 1,126
  • 14
  • 12