iPhone Simulator: SpringBoard failed to launch application with error: 7 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:19:32Z http://stackoverflow.com/feeds/question/300793 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7 3 iPhone Simulator: SpringBoard failed to launch application with error: 7 John Doe 2008-11-19T01:56:57Z 2009-10-09T11:08:56Z <p>Building an iPhone project results in: </p> <blockquote> <p>Failed to launch simulated application: SpringBoard failed to launch application with error: 7</p> </blockquote> <p>And the app doesn't install on the simulator. What's this all about? What's SpringBoard and what is error 7?</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/300886#300886 1 Answer by Lou Franco for iPhone Simulator: SpringBoard failed to launch application with error: 7 Lou Franco 2008-11-19T03:03:27Z 2008-11-19T03:03:27Z <p>Springboard is the app that launches apps. It's the home screen of the iPhone. I had tons of problems when I tried to get my app running on the phone -- turns out that I had an older version of the SDK that was incompatible with the version of the OS my phone had. Reinstalling the latest SDK did the trick.</p> <p>Also, have heard that clearing the XCode cache sometimes helps (didn't for me) -- XCode menu->Clear cache...</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/302464#302464 1 Answer by Barry Jones for iPhone Simulator: SpringBoard failed to launch application with error: 7 Barry Jones 2008-11-19T16:23:17Z 2008-11-19T16:23:17Z <p>Maybe this will help: <a href="http://discussions.apple.com/thread.jspa?threadID=1605042&amp;tstart=72" rel="nofollow">http://discussions.apple.com/thread.jspa?threadID=1605042&amp;tstart=72</a></p> <p>I had similar issues when I was trying to install my current development on the iPhone and this information about the AppID fixed it.</p> <p>For quick reference, the AppID you created when you started creating certificates for development and provisioning of your iphone asked you to create a reverse domain name identifier. Something like: QS32H9XPNE.domain.subdomain.companyname.*</p> <p>To correctly link up your application to the AppID would require you to set the identifier in the application to domain.subdomain.companyname.application.*</p> <p>Hope this helps</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/452693#452693 12 Answer by oacis for iPhone Simulator: SpringBoard failed to launch application with error: 7 oacis 2009-01-17T02:31:12Z 2009-01-17T02:31:12Z <p>I had the exact same problem - I reset the iphone simulator and then quit the simulator (i.e. command q) then started it again.</p> <p>Worked.</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/502580#502580 0 Answer by billibala for iPhone Simulator: SpringBoard failed to launch application with error: 7 billibala 2009-02-02T08:47:46Z 2009-02-02T08:47:46Z <p>I had the same problem.</p> <p>It happens as follow...</p> <p>I had a folder storing images in some sub-folders.</p> <p>If I add the root image folder as "directory", I receive this error.</p> <p>If I add the root image folder as "group", simulator runs fine.</p> <p>weird...</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/506264#506264 0 Answer by billibala for iPhone Simulator: SpringBoard failed to launch application with error: 7 billibala 2009-02-03T07:37:02Z 2009-02-03T07:37:02Z <p>It happens to be related to folder name as well. My image folder was originally named "contents" and I got the error described.</p> <p>Changed the folder name to "image_files" and reimport it to Xcode project as "folder". It works!</p> <p>This is totally random... </p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/548034#548034 0 Answer by blahedo for iPhone Simulator: SpringBoard failed to launch application with error: 7 blahedo 2009-02-13T23:02:47Z 2009-02-13T23:02:47Z <p>Boy, is the answer to this one hard to find, but I came up with a workaround. The simulator gives this error if it has any problems with accessing files in ~/Library/Application Support/iPhone Simulator/. This could be a permissions problem, but in my case it was even more subtle: my home directory is NFS mounted, and that seems to somehow be the source of the problem.</p> <p>The basic workaround is to create a directory local to the machine, and link the iPhone Simulator's directory to that local directory. You shouldn't need to move your source files or project directory; it's just the simulator targets that are the problem.</p> <p>Here is one series of steps to accomplish the workaround, to be typed in at the terminal (1-3 done on every machine you'll be developing on, 4-6 once in your NFS-mounted home directory):</p> <ol> <li><code>sudo mkdir /usr/local/iphone-dirs</code></li> <li><code>sudo chmod 777 /usr/local/iphone-dirs</code></li> <li><code>mkdir /usr/local/iphone-dirs/my-dir</code></li> <li><code>cd "~/Library/Application Support/"</code></li> <li><code>rm -rf "iPhone Simulator/"</code></li> <li><code>ln -s /usr/local/iphone-dirs/my-dir/ "iPhone Simulator"</code></li> </ol> <p>There are obviously many variations on this theme; I suspect that using a locally-hosted directory in /tmp would be fine (and not require admin privs, but would have to be redone every time the system is rebooted). As given, steps 1 and 2 are good if you will have multiple users using these machines that you don't want to collide with each other. If you have your own personal machine but NFS-mount your homedir, you could probably just skip to something like step 3 (and sudo it). Just make sure that whatever dir you create in step 3 is the dir that you symlink to in step 6.</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/626748#626748 1 Answer by Roberto Colnaghi for iPhone Simulator: SpringBoard failed to launch application with error: 7 Roberto Colnaghi 2009-03-09T15:40:06Z 2009-03-09T15:40:06Z <p>XCode menu->Clear cache solved my problem.</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/979610#979610 0 Answer by Surya for iPhone Simulator: SpringBoard failed to launch application with error: 7 Surya 2009-06-11T06:20:21Z 2009-06-11T06:20:21Z <p>This happens to me when i switch from testing on the device to testing on simulator. Restarting Xcode and simulator gets rid of this error for me.Silly.</p> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/1092765#1092765 0 Answer by Martin for iPhone Simulator: SpringBoard failed to launch application with error: 7 Martin 2009-07-07T14:44:59Z 2009-07-07T14:44:59Z <p>That did it for me, too:</p> <blockquote> <p>This happens to me when i switch from testing on the device to testing on simulator. Restarting Xcode and simulator gets rid of this error for me.Silly.</p> </blockquote> http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/1543173#1543173 0 Answer by Anton for iPhone Simulator: SpringBoard failed to launch application with error: 7 Anton 2009-10-09T11:08:56Z 2009-10-09T11:08:56Z <p>When a home directory mounted in NFS you have the problem with the simulator.</p> <p>To get rid of it, you need to to create a couple of directories in some local place where you have permissions to write, "iPhone Simulator" and "Interface builder". Then remove "~/Library/Application Support/iPhone Simulator" and "~/Library/Application Support/Interface Builder 3.0". And finally create symlinks at the exact places of the removed directories pointing to the local directories.</p>