Xcode error: Failed to launch simulated application - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T22:01:24Z http://stackoverflow.com/feeds/question/822972 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/822972/xcode-error-failed-to-launch-simulated-application 0 Xcode error: Failed to launch simulated application springrider 2009-05-05T01:57:07Z 2009-08-28T17:17:21Z <p><strong>Problem statement:</strong></p> <p>Unlike people have asked at <a href="http://stackoverflow.com/questions/717453/multiple-targets-in-xcode-failed-to-launch-simulated-application-unknown-error">here</a> and <a href="http://stackoverflow.com/questions/779115/iphone-failed-to-launch-simulated-application-unknown-error">here</a></p> <p>I got this error after a brand new installation of leopard(hackintosh), this problem really driving me crazy.... and nowhere else to find an clue, I googled and visited every article related with this, still cann't get it solved</p> <p>After the first time install iPhone SDK 2.2.1, start a new project(any type, Navigate based, OpenGL ES application), then build and go, I got the following problem: sometime it's:</p> <pre><code>* Failed to launch simulated application: Unknown error. </code></pre> <p>and sometime it is:</p> <pre><code>* Failed to launch simulated application: iPhone Simulator failed to find the process ID of com.yourcompany.[your application name] </code></pre> <p>It seems that apps in the simulator crashed immediately, so Xcode can find the process ID.</p> <p><strong>the solution ?</strong></p> <p><a href="http://iphonedevelopmentfaq.com/view-question.php?id=106" rel="nofollow">This link</a> says that this even cann't be solved:</p> <p>Some others make a detailed step by step:</p> <pre><code>* Uncheck Info.plist * quit XCode * Delete directory /Lib/Caches/com.apple.DeveloperTools.### * Open Xcode project * Clean All Targets * Rebuild </code></pre> <p>and I reset the iPhone Simulator. Also not solved the problem...</p> <p>I've even tried uninstall the SDK and reinstall it, still got the same error...</p> <p>Is this a problem related with hardwares? or the operating system version? I'm using hackintosh(iDenebv1.4 10.5.6), all other software works good including iTunes &amp;&amp; vmware fusion.</p> <p>Great thanks for any further tips or clues!</p> http://stackoverflow.com/questions/822972/xcode-error-failed-to-launch-simulated-application/825239#825239 0 Answer by nessence for Xcode error: Failed to launch simulated application nessence 2009-05-05T14:51:47Z 2009-05-05T14:51:47Z <p>Is your CPU Intel, and, of a model distributed in Apple hardware?</p> <p>I doubt the Simulator will work reliably (if at all) on non-Intel CPUs and/or in VMWare. The simulator is <strong>very</strong> CPU specific in order to reflect the arm hardware of the iPhone.</p> <p>The SDK ONLY supports Intel hardware from Apple.</p> <p>There is a significant effort involved in creating the simulator and it's not easy or cheap (read, thousands of man hours) to support every CPU.</p> http://stackoverflow.com/questions/822972/xcode-error-failed-to-launch-simulated-application/842604#842604 1 Answer by springrider for Xcode error: Failed to launch simulated application springrider 2009-05-09T03:45:12Z 2009-05-09T03:50:32Z <p>found some wierd log in /var/log/system.log. </p> <pre><code>May 8 16:17:50 th084134 /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2.1.sdk/System/Library/CoreServices/SpringBoard.app/SpringBoard[1170]: MobileInstallationLookup: Generating the install map May 8 16:17:50 th084134 /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2.1.sdk/System/Library/CoreServices/SpringBoard.app/SpringBoard[1170]: load_application_info: Could not load signer identity from /Users/test/Library/Application Support/iPhone Simulator/User/Applications/5D55807A-7489-4DC5-B4D7-2ECD5E230F29/new1.app/new1 May 8 16:17:50 th084134 [0x0-0x2e02e].com.apple.iphonesimulator[1168]: error compiling query "SELECT value FROM _SqliteDatabaseProperties WHERE key = ?;": no such table: _SqliteDatabaseProperties May 8 16:17:51 th084134 SpringBoard[1170]: Unable to obtain task name port for com.yourcompany.new1. Either it failed to exec or it terminated immediately: (os/kern) failure May 8 16:17:51 th084134 SpringBoard[1170]: Couldn't activate &lt;SBApplication: 0x123e6d0&gt; com.yourcompany.new1 activate: animated deactivate: May 8 16:17:51 th084134 SpringBoard[1170]: Application &lt;SBApplication: 0x123e6d0&gt; com.yourcompany.new1 activate: animated deactivate: exited abnormally with signal 256: Unknown signal: 256 May 8 16:17:51 th084134 SpringBoard[1170]: Unable to obtain task name port for com.yourcompany.new1. Either it failed to exec or it terminated immediately: (os/kern) failure May 8 16:17:51 th084134 com.apple.launchd[164] (UIKitApplication:com.yourcompany.new1[0xa455][1171]): Bug: launchd_core_logic.c:2812 (23714):103: sandbox_init(j-&gt;seatbelt_profile, j-&gt;seatbelt_flags, &amp;seatbelt_err_buf) != -1 May 8 16:17:51 th084134 com.apple.launchd[164] (UIKitApplication:com.yourcompany.new1[0xa455][1171]): Sandbox failed to init: Cannot apply builtin profile `/Users/test/Library/Application Support/iPhone Simulator/User/Applications/5D55807A-7489-4DC5-B4D7-2ECD5E230F29.sb': Policy not found May 8 16:17:51 th084134 com.apple.launchd[164] (UIKitApplication:com.yourcompany.new1[0xa455][1171]): Exited with exit code: 1 May 8 16:17:51 th084134 [0x0-0x2e02e].com.apple.iphonesimulator[1168]: 2009-05-08 16:17:51.026 SpringBoard[1170:10b] Unable to obtain task name port for com.yourcompany.new1. Either it failed to exec or it terminated immediately: (os/kern) failure </code></pre> <p><a href="http://discussions.apple.com/thread.jspa?messageID=8508217" rel="nofollow">Here</a> is a discussion about how to run app in simulator via command line, hope it helps to understand how does xcode and simulator works.</p> <p>But I didn't work it out.</p> <p>Well, I "solved" it by <strong>install another distribution of hackintosh(IPC 10.5.6),</strong> works perfect!</p> http://stackoverflow.com/questions/822972/xcode-error-failed-to-launch-simulated-application/1174714#1174714 0 Answer by Ugg for Xcode error: Failed to launch simulated application Ugg 2009-07-23T21:52:26Z 2009-07-23T21:52:26Z <p>I fixed this problem by removing the "Icon already includes gloss and bevel effect" property from the Info.plist file in my project.</p> http://stackoverflow.com/questions/822972/xcode-error-failed-to-launch-simulated-application/1253288#1253288 0 Answer by fbrereto for Xcode error: Failed to launch simulated application fbrereto 2009-08-10T05:58:35Z 2009-08-10T05:58:35Z <p>My problem centered around a Product Name the simulator simply wouldn't accept. Picking alternative names got me past the problem. Changing the name back to the original suspect choked the simulator every time.</p> http://stackoverflow.com/questions/822972/xcode-error-failed-to-launch-simulated-application/1348333#1348333 0 Answer by frankm for Xcode error: Failed to launch simulated application frankm 2009-08-28T17:17:21Z 2009-08-28T17:17:21Z <p>FIXED For the issue: iPhone Simulator failed to find the process ID of com.yourcompany.[your application name]</p> <p>I was having an issue building and simulating a project I built under OS Version 2.2.1, which I could no longer get to build and run in the simulator for XCode 3.1.4, even though I forced XCode to build for "Simulator - 2.2.1 Debug"</p> <p>I was able to get past this problem by: - Close the iPhone Simulator - Putting XCode into View->Detail - Opening the "Info.plist" file in the "Resources" folder - Near the top of the file you should see "Info.plist" with and up/down arrow selector - Click on the up/down arrow selector - Select "Clear File History"</p> <p>Built For: Simulator - 2.2.1</p> <p>XCode Version: 3.1.4 (Which includes OS3.1 Beta 3)</p>