I'm trying to test my app on an iPhone 3G, however I'm 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.

Note that:

  • The 3G has version 4.2.1 of iOS installed
  • The iOS deployment target is set to version 4.2
  • The device has valid development profiles installed
  • I'm using the latest Xcode 4

I'm at a loss. Can anyone help?

Tim

link|improve this question

Sounds more likely to be a provisioning problem than one with the OS. – Danyal Aytekin Oct 25 '11 at 6:20
feedback

5 Answers

up vote 9 down vote accepted

I finally found a solution to this.

If anyone else has this problem then it might be useful to know that Xcode now creates applications for ARM7 by default.

To support the iPhone 3G and other arm6 devices, you need to specify arm6 and arm7 in in the Architectures list, and set the device requirements to only arm6 in the plist.

link|improve this answer
Good answer (And some padding characters because "Good answer" wasn't enough!) – James Webster Nov 16 '11 at 12:38
1  
Where exactly is this setting? In a fresh set-up of Xcode 4.2 I can see 'Valid Architectures' which has defaulted to 'armv6 armv7', and I see a 'Archtectures' which seems to be set to some kind of substitution variable: '$(ARCHS_STANDARD_32_BIT)' which shows as 'Standard (armv7)'. Best way to change this? – Harry Wood Nov 28 '11 at 15:25
There are detailed instructions and warnings about adding armv6 to architectures of xcode 4.2+ at [stack overflow article] (stackoverflow.com/questions/7488657/…) – miker May 21 at 14:21
feedback

I develop on multiple devices and multiple generations of each device. Look at the scheme. In the case of an iOS 5 device, at least, if it does not have the specific device name, but instead shows iOS Device, then eject the device in iTunes and unplug the device. Plug it back in and try to run/install. The device name should show up and the device should have a green dot in Organizer and everyone will be happy. I believe the 3G iPhone just shows up as iOS Device, and I'm not sure about the 3GS, but an iPhone 4 or 4S will show its device name. This is what I get for trying to continue supporting old iPod Touches and 3G phones with 4.2.1. At some time I'll just cut them off and move on.

link|improve this answer
Thanks! In Xcode 4.2.1 when I went into Organizer there was no green dot beside my device name in the left hand column. When I clicked on the device name (in the left column), then in the right hand side of organizer it brought up all the device info with a big button that said USE FOR DEVELOPMENT. After I clicked this button it then showed up in the drop down and I was able to use it. – jsherk Apr 8 at 20:34
feedback

Another observation for anyone who still has the problem after adding armv6: I found that Xcode was still listing "iOS Device" in the Scheme dropdown rather than filling in the name of my 3G. When I clicked on the dropdown, I saw that there was another slot that listed my 3G. (Presumably the "iOS Device" slot only applies to my other development device, an iPhone 4). I'm curious whether this is intended functionality, so leave a comment if you develop with multiple phones and have seen this.

link|improve this answer
feedback

Maybe you have set the minimum required iOS to a higher version than your 3G has. Could you try to change the iOS Deployment Target in the build settings to the version of your 3G?

link|improve this answer
My iOS Deployment target is set to 4.2 – tarmes Oct 24 '11 at 13:04
feedback

Not sure, i understand your settings right. But, the rules are:

  • Base SDK Version >= Development device iOS version
  • Deployment Target version = Lowest iOS version to be supported.

Hence, i guess, setting base SDK version equal or above 4.2.1 might help.

link|improve this answer
The base SDK version is set to 5.0. – tarmes Oct 24 '11 at 14:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.