Xcode 6.3 showing Ineligible Device
Asked Answered
U

7

15

I'm using latest Xcode i.e. 6.3 and my devices(iPad Mini) having iOS ver 8.3(12F69). I'm not able test my app with this device as its showing Ineligible Devices. See the attached screenshot from xcode.

I'm not sure why this is happening, using latest Xcode enter image description here

enter image description here

Utimer answered 16/4, 2015 at 7:11 Comment(5)
And what's the iOS version of NGA iPad Mini ?Dimmick
Go to Product > Destination, and even though it says your device is ineligible, it will still allow you to select it, then building to it will work.Dimitri
I've already mention it there. Its 8.3 build 12F69Utimer
Thanks @Dimitri it works. I can run the application now. But any Idea why it is showing ineligible?Utimer
@AmitSingh: Apple's updates are not perfect. They have some weird bugs so we have to deal with this. I have posted it as an answer. Please accept.Dimitri
D
31

Go to Product > Destination, and even though it says your device is ineligible, it will still allow you to select it, then building to it will work.

There are some bugs in apple's release sometimes, but we have no option to find a solution that works for us.

Hope it helps you.

Dimitri answered 16/4, 2015 at 8:54 Comment(6)
Is it possible that my app is for iPhone and I'm trying to test it on iPad, that is why its showing Ineligible Devices. I'm pretty sure that in the previous xcode this was not the case. I'm just guessing, Is it?Utimer
@AmitSingh: No. I don't think so... It is a bug in xCode 6.3. You can read it here also #24039510Dimitri
The Developer Disk Image could not be mounted.Autoradiograph
I get Could not find Developer Disk image in XCode 7Umbrella
@Umbrella did you find anything??? I had a same alert and not running on selected device Xcode 7Alphonso
@El Captain, no I started testing with the iOS Simulator only. I suspect that the SDK is just too new for the device in question.Umbrella
T
2

If you are not able to select your device you can try below set of solution: 1. Restart your iOS device (If device is recently updated)

  1. Restart the Xcode, most probably this should fix the issue.

  2. Otherwise you can goto - Product > Destination, select your device which would be showing as ineligible device.You will be able to select your device and go ahead with the build.

also i have observed that if you have the iOS 8.4 then your Xcode doesn't have the SDK for iOS 8.4 due to which devices show as ineligible. To solve this issue

Download Xcode 6.4

Tiercel answered 9/7, 2015 at 13:7 Comment(0)
A
1

I did reset XCode from command line by running following commands (then restart XCode) and device started appearing for me correctly:

defaults delete com.apple.dt.Xcode
rm -rf $HOME/Library/Application Support/Developer/Shared/Xcode
rm -rf $HOME/Library/Saved\ Application\ State/com.apple.dt.Xcode.savedState
rm -rf $HOME/Library/Preferences/com.apple.dt.Xcode.*
Algol answered 21/5, 2015 at 13:13 Comment(0)
F
1

Close and restart Xcode worked for me.

Fiddler answered 4/7, 2015 at 4:21 Comment(0)
B
0

According to the changelog, Apple has fixed this in XCode 6.3.1. If this issue still bugs you, you might want to upgrade your environment.

Boding answered 25/4, 2015 at 17:10 Comment(0)
K
0

check that the deployment target for your app is not newer than the iOS version on the device.

Kaleykaleyard answered 2/9, 2015 at 19:40 Comment(0)
O
0

Your iOS device version is lower than the iOS version defined your application.

Ex. Suppose your device's iOS version is 7.1 and your App's target version is 8.0. So Device is shown as ineligible device.

You can fix the problem either by downgrade the target version of your App or Update your device. See picture for deployment target

Oletta answered 24/6, 2016 at 6:6 Comment(2)
I guess if device OS version is higher than the OS supported by the Xcode, then Xcode display as Ineligible DevicesUtimer
If your Xcode is not updated then it will not support the latest OS release, so the device is not eligible to testUtimer

© 2022 - 2024 — McMap. All rights reserved.