Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"No provisioned iOS devices are available with a compatible iOS version" after upgrade

I had Xcode 6.3 beta and iOS 8.3 beta, I updated to the public final versions and now I cannot run anything, getting this error:

No provisioned iOS devices are available with a compatible iOS version. Connect an iOS device with a recent enough version of iOS to run your application or choose an iOS simulator as the destination.

I have tried everything other posts have said with no luck (my iPhone is "used for development", Base SDK = latest iOS (iOS 8.3), Xcode 6.3 (6D570), iOS 8.3 (12F70), Deployment target=8.0, deleted derived data, restarted Xcode, opened up iTunes)

Anyone out there having the same problem?

like image 981
diegomontoyas Avatar asked Apr 13 '15 01:04

diegomontoyas


2 Answers

Did you try this one?

For XCode 6.3, go to Menu: Product > Destination > and select your Device name. Though it says your device is ineligible it will allow you to select the device. That's it!!

If your device version is >= target version, the build will work.

like image 108
Karthi Avatar answered Oct 01 '22 21:10

Karthi


Ask yourself:

Is your iPhone updated to 8.3 release (not beta)?

Is your project's Base SDK lower than your device?

It only happens if your Base SDK is less than your device version or if your deployment target is higher than your device version.

Your app should work if Base SDK >= device >= deployment target.

like image 23
Schemetrical Avatar answered Oct 01 '22 21:10

Schemetrical