jaumevn
jaumevn

Reputation: 449

App installation failed. This operation is unsupported

I've been updating an app that works perfectly in iOS7 to be compatible with the new iOS8. I can't deploy the app to an iPhone with the last GM iOS8 version. The compilation process give me no errors, but Xcode give me the following alert:

App installation failed. This operation is unsupported.

Xcode error

Can someone help me?

Thanks

Upvotes: 4

Views: 578

Answers (2)

Yue-Hsun Lin
Yue-Hsun Lin

Reputation: 56

I had the same problem too. The environment I used is Xcode6 and try to run my app on iOS8 devices.

My solution is

  1. first change Deployment Location as NO in your Build Settings.
  2. Close Xcode
  3. Remove all intermediate build files located in the corresponding subfolders (has your app prefix) under Xcode Derived Data folder (~/Library/Developer/Xcode/DerivedData/).
  4. Restart your Xcode, build, and then run app on your devices.

Upvotes: 4

Colin Valière
Colin Valière

Reputation: 51

Had the same problem.

This is a compatibility problem between Xcode 6 and your app configuration.

1) Download Xcode 5 and try to run your app on your ios8 device, it should work

2) Try to recreate your app configuration from scratch to ensure compatibility with Xcode 6

Upvotes: 1

Related Questions