Prashant Tukadiya
Prashant Tukadiya

Reputation: 16416

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

I got this error while try to install in device, any one ever faced same situation ?
I am using Xcode 7.2

Upvotes: 5

Views: 3965

Answers (9)

Talha Rasool
Talha Rasool

Reputation: 1152

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

Upvotes: 0

europeec
europeec

Reputation: 487

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

Upvotes: 0

Vikram Sinha
Vikram Sinha

Reputation: 609

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

Upvotes: 0

Dhruv Khatri
Dhruv Khatri

Reputation: 813

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.

Upvotes: 3

Ketan Parmar
Ketan Parmar

Reputation: 27428

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

Upvotes: 9

Priyanka Wadher Mistry
Priyanka Wadher Mistry

Reputation: 464

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]

Upvotes: 2

stefos
stefos

Reputation: 1235

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

Upvotes: 2

Olivier
Olivier

Reputation: 108

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.

Upvotes: 2

David Ansermot
David Ansermot

Reputation: 6112

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.

Upvotes: 2

Related Questions