Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to render and update auto layout status, Failed to launch designables agent because tool was shutting down

I start working on an iOS project and it's using IB and storyboard. I build it after cloning from the repository and it was successful. But the problem is after simply clicking on the storyboard or change something it would not run and throw some errors. I use Xcode 12.4 and I think maybe it's a version problem.

Main.storyboard: error: IB Designables: Failed to render and update auto layout status for ReportsViewController (1DJ-2Y-KKP): Failed to launch designables agent because tool was shutting down. Check the console for a more detailed description and please file a bug report at feedbackassistant.apple.com.

What should I do and what it's saying?

Also, I get this red line in the report navigator:

No account for team "**********". (Add a new account in the Accounts preference pane or verify that your accounts have valid credentials.)

like image 662
Fariman Kashani Avatar asked Oct 26 '25 06:10

Fariman Kashani


1 Answers

Failed to render and update auto layout status for ReportsViewController

This error should not prevent you from building/running your application. It is often a Xcode bug, and most of the times you can get rid of it just by opening a .swift file and returning to the storyboard, undo & redoing last change or cleaning build folder.

No account for team "**********".

This must be the one stopping you from running your app, to fix it you must sign in with an Apple account. See here: https://stackoverflow.com/a/56774681/8125224

like image 190
Muhammed Gül Avatar answered Oct 27 '25 21:10

Muhammed Gül