0

I have an app that I want to run on my iPhone. I've code signed it and checked everything multiple times. It builds and then Xcode 4.3 just tells me "Finished running MYAPP on iPhone" -- but nothing happened . The app doesn't even install on my iPhone! Other apps I've made still work fine, even when built in Xcode 4.3.

jscs
  • 63,694
  • 13
  • 151
  • 195
user591375
  • 271
  • 4
  • 11
  • 2
    Just for additional error logs: try to archive your app as IPA, then drag and drop the IPA to your connected device in XCode->Organizer. Do you get a "better" error message? – Jonas Schnelli Apr 11 '12 at 08:50
  • I had same issue. Check this. – Yama Apr 11 '12 at 08:52
  • @Sarah I think you forgot to include the link. – ThomasW Apr 11 '12 at 08:54
  • @Thomasw : oooops..sorry.. check this. http://stackoverflow.com/questions/9460621/xcode-4-2-1-issue-universal-app-runs-on-ipad-but-not-on-iphone – Yama Apr 11 '12 at 09:13

1 Answers1

3

Perhaps you are missing the armv6 architecture, while building on a armv6 device? Or you did setup required-device-capabilities, that aren't available on the device you are building on.

Try this: Build an archive, export an IPA file, open the Organizer. Drag'n'Drop the IPA onto your device. Here you will get a more detailed error message.

calimarkus
  • 9,955
  • 2
  • 28
  • 48