Unable to install app in simulator xcode 9 beta

前端 未结 12 980
耶瑟儿~
耶瑟儿~ 2020-12-16 12:54

I downloaded Xcode 9 beta recently, and when I tried to run my app in the simulator it is not getting installed. I am getting this error in my Xcode every time I try to run

12条回答
  •  执念已碎
    2020-12-16 13:28

    Unfortunately, the error message doesn’t explain why the install failed. You can take a look at ~/Library/Logs/CoreSimulator/CoreSimulator.log to see if the rest of the error message is there with more info. If not, you should check out the sim device’s system log:

    sudo xcode-select -s /Applications/Xcode-beta.app # if you haven’t already
    xcrun simctl spawn booted log show
    

    You can use --predicate to filter that down a bit.

提交回复
热议问题