Xcode error: Failed to launch simulated application

前端 未结 17 2121
走了就别回头了
走了就别回头了 2020-12-16 03:21

Problem

Unlike people have asked at here and here, I got this error after a brand new installation of Leopard (hackintosh), this problem really driving me crazy a

相关标签:
17条回答
  • 2020-12-16 03:56

    This ends up being a product name issue:

    The fix is to revert back to

    ${EXECUTABLE_NAME} ${PRODUCT_NAME}

    for the executable file and com..${PRODUCT_NAME} in the info.plist.

    Clean XCode, Quit, rese and quit simulator and you're good to go.

    0 讨论(0)
  • 2020-12-16 04:01

    Is your CPU Intel, and, of a model distributed in Apple hardware?

    I doubt the Simulator will work reliably (if at all) on non-Intel CPUs and/or in VMWare. The simulator is very CPU specific in order to reflect the arm hardware of the iPhone.

    The SDK ONLY supports Intel hardware from Apple.

    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.

    0 讨论(0)
  • 2020-12-16 04:01

    This was bugging me too but finally got it working. Unfortunately, I can't reproduce what I did it but here's my list of actions for your information.

    The project causing the problem was one I'd downloaded from Apple and tweaked. Interestingly, I could still launch my own projects fine.

    So, here's a list of actions that I did (note that none of the actions below worked just by itself): - closing the simulator and doing "clear file history" - restarting simulator - rebooting - restarting xcode - resetting the iPhone with Reset Content and Settings

    However, by the time I'd tried all of the above with a fresh version of the code I'd downloaded - it was working again. Just out of interest, I dragged the project that was causing this problem back to the desktop and it was OK now.

    0 讨论(0)
  • 2020-12-16 04:01

    I had the exact same problem - I reset the iphone simulator and then quit the simulator then started it again.

    0 讨论(0)
  • 2020-12-16 04:02

    found some wierd log in /var/log/system.log.

    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 <SBApplication: 0x123e6d0> com.yourcompany.new1 activate: animated  deactivate: 
    May  8 16:17:51 th084134 SpringBoard[1170]: Application <SBApplication: 0x123e6d0> 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->seatbelt_profile, j->seatbelt_flags, &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
    

    Here is a discussion about how to run app in simulator via command line, hope it helps to understand how does xcode and simulator works.

    But I didn't work it out.

    Well, I "solved" it by install another distribution of hackintosh(IPC 10.5.6), works perfect!

    0 讨论(0)
  • 2020-12-16 04:02

    My fix:

    restarted the Mac and it was fixed. (before that tried clearing caches, deleting caches from iPhone Simulator, cleaning, rebuilding, quitting OS, quitting Simulator, nothing worked.) Restarting the OS worked.

    0 讨论(0)
提交回复
热议问题