Flutter iOS run error : Could not parse callback cache, aborting restore

Viewed 1858

I have created a flutter project. when run my app in iOS simulator then I am facing this error. It shows error as "[VERBOSE0:callback_cache.cc(133)] Could not parse callback cache, aborting restore" while running on Xcode.

2 Answers

I found this thread on the Flutter repository. (Check the last comment) Hope it helps!

I got this issue after accidentally left Main Interface in Deployment Info in Runner.xcodeproj empty. And my solution is to get this back into Main.storyboard.

Related