8

I'm trying to run an app on a 3G device. Xcode says that the app has "Finished running on the iPhone" but the app will not deploy. I think I have the architectures configured correctly (see image below)

enter image description here

enter image description here

any help would be great,

thanks

hanumanDev
  • 6,592
  • 11
  • 82
  • 146

8 Answers8

17

I figured this out finally. In the Info.plist there's a "Required device capabilities" setting that was set to armv7. I was aware of the armv6 and armv7 requirements in the target build settings for the 3G model but not in the plist. here's a screenshot. hope it helps anyone else stuck with something similar:

enter image description here

hanumanDev
  • 6,592
  • 11
  • 82
  • 146
1

Each .xib file and core data model also has a deployment property. It's in the identity inspector. Changing it worked for me.

Xynyn
  • 11
  • 1
1

Your configuration looks fine. I’ve seen this before; removing the device from the Organizer (selecting it in the list on the left of the “Devices” tab and clicking the “Remove” button at the bottom of the main panel), restarting Xcode, and connecting it again seemed to fix the problem.

Noah Witherspoon
  • 57,021
  • 16
  • 130
  • 131
1

In my case, the architecture in the target properties was set to Standard (armv7). I had to add the armv6 architecture and it worked

1

Check "Required device capabilities" in settings. I had problem with accelerometr set to OFF. When I had remove this line, everything start working.

Same problem on 3G (iOS4) and 4GS (iOS5)

0

Make sure you have it setup like this in the target build settings, not just the project build settings.

lorean
  • 2,150
  • 19
  • 25
0

Restarting the device usually fixes this one for me.

James Webster
  • 31,873
  • 11
  • 70
  • 114
  • I've restarted and even restored the device, but still the same thing. Just the message "Finished running myApp on myDevice". I'll try it again. – hanumanDev Nov 17 '11 at 13:10
0

Under Build Settings at the top, you'll not a selection named 'Levels'. If you select this you may find that the Architecture and/or your Code Signing Identity is out of step with the settings that were showing under the 'Combined' setting. I had a case where an App was building successfully and simply not deploying on the phone. When I select "Levels" the values under my App target for these Build settings was incorrect. Once I set them here it deployed to the device fine.

Hope that helps.

Michael Reed
  • 2,362
  • 23
  • 15