Xcode 4.4 error - Timed out waiting for app to launch

IphoneIosxcode4.4

Iphone Problem Overview


yesterday I installed Xcode 4.4.

I'm working on a project which needs to run on ios 4.1 upwards, supporting iOS device with camera. Until I installed Xcode 4.4 everything went well, and I can test app on iphone 3gs and 4s. After I installed Xcode 4.4 I was unable to test app on iphone 3gs, and everytime I try to do it, xcode shows me that message: - Could not lauch "appname". timed out for app to lauch -

Does someone have any idea how to get rid of that error?

Iphone Solutions


Solution 1 - Iphone

I had a similar issue when trying to debug an App with Ad-Hoc provisioning... Check which provisioning you're using, it seems ad-hoc provisioning cannot be used for debugging.

EDIT In fact, it seems only development provisioning profiles are Ok for debugging

Solution 2 - Iphone

scheme configuration For me:
Under Edit Scheme
For the Run configuration
On the Info tab
For Build Configuration
I had Release selected

But, it needs to be on Debug to run locally on a device.

Solution 3 - Iphone

I had a similar issue. In my case the reason was that I changed the setting for Launch ( xcode -> product -> Edit Scheme) to Wait and forgot about it.

When I changed the setting back to Automatic, the app will launch as usual.

Solution 4 - Iphone

I also had same problem. I deleted old provisioning & distribution profiles from the testing devices and installed the modified profiles. The date of these provisioning profiles matter. The error timedout got solved.

Solution 5 - Iphone

Remove the app from the device/simulator and try again, should work. Looks to be a bug in xcode.

Solution 6 - Iphone

It is issue of Provisioning profile. I was using Distribution Provisioning Profile. Changed back to Development Provisioning profile from Developer portal and used that, Solved the issue.

Solution 7 - Iphone

This worked for me on XCode 4.6 iOS 6.1.2

  • Open Organizer
  • Select your device from the left
  • Add to Portal
  • Enter you Developer credentials
  • Close Organizer and in the project file under your target select "Build Settings" -> "Code Signing Identity" pick the profile "iOS Team Provisioning Profile"
  • Clean and run.

Solution 8 - Iphone

I had same problem now I resolved it ..

Follow these step to sort out the problem.

Step:1 Go to xcode folder like this

enter image description here

Step2: Reach to folder xcode->DerivedData

Step3: Delete all folder inside of DerivedData

It will work for you Thanks

Solution 9 - Iphone

Try to remove you app from simulator and/or reset simulator settings.

Simulator settings could be different from old one.

Generally, resetting everything works well.

Solution 10 - Iphone

Old question but adding my solution for rare cases like mine. Removing app from device/ clean-build/ provisioning changes did not work for me. I restarted the Xcode and it started working fine.

Solution 11 - Iphone

In my case the cause turned out to be the launch daemon being unable to load the app icons and crashing. Even though it didn't look like a crash - the device and the OS were becoming very slow or totally unresponsive. I figured this by analysing the crash logs. (My icons were too large - about 2,500x2,500 - I simply forgot to reduce their sizes properly before adding them to resources). Hope this helps someone.

Solution 12 - Iphone

I tried all solution above with no success. But when I did complete cleanup of my iPhone 4S with iOS 7 this problem never occurred again.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionnotsouxView Question on Stackoverflow
Solution 1 - IphoneVinzzzView Answer on Stackoverflow
Solution 2 - IphonebearMountainView Answer on Stackoverflow
Solution 3 - IphoneB.M. LamView Answer on Stackoverflow
Solution 4 - Iphoneuser1919461View Answer on Stackoverflow
Solution 5 - IphoneMatthew VelieView Answer on Stackoverflow
Solution 6 - IphoneMannView Answer on Stackoverflow
Solution 7 - IphoneedaypeView Answer on Stackoverflow
Solution 8 - IphoneSachinVsSachinView Answer on Stackoverflow
Solution 9 - IphoneelpView Answer on Stackoverflow
Solution 10 - IphoneObj-SwiftView Answer on Stackoverflow
Solution 11 - IphonemojubaView Answer on Stackoverflow
Solution 12 - IphoneFunkyMonkeyView Answer on Stackoverflow