Reputation: 2698
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
Upvotes: 15
Views: 7559
Reputation: 761
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
Upvotes: 0
Reputation: 828
check that the deployment target for your app is not newer than the iOS version on the device.
Upvotes: 0
Reputation: 7732
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)
Restart the Xcode, most probably this should fix the issue.
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
Upvotes: 2
Reputation: 5064
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.*
Upvotes: 1
Reputation: 16112
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.
Upvotes: 0
Reputation: 3914
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.
Upvotes: 31