Can't install application error while installing in device
Asked Answered
K

9

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

Kris answered 18/5, 2016 at 11:48 Comment(0)
B
9

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

Boswell answered 18/5, 2016 at 12:3 Comment(2)
arm7 and arm64 are not capabilities but architectures and are inside the "Build Settings" tab, not the "Capabilities"Lemmuela
@David'mArm'Ansermot : Used wrong word!! Updated it. thanks for suggestion. :)Boswell
G
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.

Grobe answered 18/5, 2016 at 12:40 Comment(2)
i have to add arm7 and arm 64 both ?Kris
Arm7 is for A6 processors and arm64 is for A7 processors so its based on your requirement.Grobe
L
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.

Lemmuela answered 18/5, 2016 at 11:54 Comment(0)
A
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.

Angelinaangeline answered 18/5, 2016 at 11:55 Comment(0)
R
2

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

Renascence answered 18/5, 2016 at 11:55 Comment(0)
W
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]

Whiles answered 18/5, 2016 at 11:56 Comment(0)
F
0

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

Fantasia answered 9/7, 2018 at 7:33 Comment(0)
A
0

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

Alert answered 7/2, 2021 at 12:37 Comment(0)
S
0

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

Sahaptin answered 14/10, 2021 at 8:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.