Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 12.3: Failed to re-create a coordinator for com.me.myapp

Tags:

xcode

I'm getting the following message while trying to launch simulator

Details

Failed to re-create a coordinator for com.me.myapp.
Domain: IXErrorDomain
Code: 29
Failure Reason: Coordinator already exists.
User Info: {
    FunctionName = "+[IXAppInstallCoordinator(IXSimpleInstaller) _beginInstallForURL:consumeSource:options:completion:]_block_invoke";
    SourceFileLine = 313;
}
--


System Information

macOS Version 10.15.5 (Build 19F101)
Xcode 12.3 (17715) (Build 12C33)
Timestamp: 2021-01-25T15:50:20+01:00

I also found that it works Ok if i launch it on another device simulator (lets say iphone 11 pro instead of 12 pro) but i'd like to fix this somehow.

What i had already tried:

  • cmd+shift+K
  • rebooting mac
  • quitting xcode

Xcode: Version 12.3 (12C33)

any ideas on how to get it fixed would be appreciated

like image 653
eugene_prg Avatar asked Jan 25 '21 14:01

eugene_prg


People also ask

How to fix Xcode failed to create provisioning profile error?

How To Fix Xcode Failed To Create Provisioning Profile Error. To fix this error is very easy, just connect your real iOS device such as iPhone to the Mac computer with a USB line, follow the popup screen on the iPhone, then you can select your iOS device in the Set the active scheme drop down list.

How to fix “XCode not responding to testproject” error?

You can find this error message by click the Xcode project ( TestProject ) on the Xcode editor left project list panel. Then click one of the TARGETS ( TestProject ) on the XCode center editor. Then click the General tab on the top area of the selected target detail pane. Then you can see the error message in the Signing area —> Status section. 2.

How to fix Xcode “signing area not working” error?

Now go to your Xcode project ( TestProject ) —> target ( TestProject ) —> General tab —> Signing area, you will find the error message disappear.

How to regenarate iOS and Android folders within React Native project?

The only workaround to regenarate ios and android folders within a react native project is the following. Generate a project with same name using the command react-native init Backup your old project ios and android directories into a backup location Then copy ios and android directories from newly created project into your old not working project


3 Answers

On simulador menu:

Device -> Erase all Content and Settings...

like image 152
Ronaldo Albertini Avatar answered Oct 17 '22 10:10

Ronaldo Albertini


I solved it by uninstalling the app from the simulator and running it again.

like image 30
smukamuka Avatar answered Oct 17 '22 10:10

smukamuka


Found the solution: xcrun simctl erase all

Hope it helps someone facing the same problem.

like image 29
eugene_prg Avatar answered Oct 17 '22 11:10

eugene_prg