Xcode 4.4 error - Timed out waiting for app to launch

浪尽此生 提交于 2019-11-27 11:51:45

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

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.

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.

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.

Check which provisioning you are using, it seems that ad-hoc provisioning cannot be used for debugging. If your problem is not solve with above instruction then also try these:

 Stop the app from running in Xcode;
 Delete the app from the device (or Simulator);
 Select Product > Clean from the Xcode menu;
 Close Xcode;
 Close the Simulator (or restart the device);
 Restart your computer & then check.

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

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.

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.

I had same problem now I resolved it ..

Follow these step to sort out the problem.

Step:1 Go to xcode folder like this

Step2: Reach to folder xcode->DerivedData

Step3: Delete all folder inside of DerivedData

It will work for you Thanks

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.

elp

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.

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!