iOS simulator crash in iOS 8.2 and Xcode 6.2 with “Failed to lookup the process ID of #ID after successful launch.”

前端 未结 8 2054
青春惊慌失措
青春惊慌失措 2021-02-07 14:23

iOS simulator crash in iOS 8.2 and Xcode 6.2 with an error below

\"Failed to lookup the process ID of xxx.xxx.xxx after successful launch. Perhaps it crashed after laun

8条回答
  •  耶瑟儿~
    2021-02-07 14:52

    It might be the case that your app is not set up to build for the proper platform for simulator which are i.e. i386, x86_64.

    It happened to me as I built for arm64 platform, and try to hook it up to simulator; built via xcodebuild command line. But I think you might want to try because basically Xcode use that tool to build things up for you.

    So check the following in Build Setting of Xcode (along the line of text similar to this)

    • Only Build Active Arch => YES
    • Build architecture => i386 (or set to something else but not for mobile architecture)

提交回复
热议问题