DEV Community

ValerianaGit💙
ValerianaGit💙

Posted on • Updated on

🛠️Coming back to a Flutter project after not opening it for a while

This list will be proactively updated

We have all come across this in the Flutter world. A project is not opened for some time and it is bound to have some breaking changes.

Toolkit to the rescue!

Here are some tips that have helped get flutter projects up and running again.

March 13th 2023

🚨 Unknown (turns out it is a pod issue)

  • delete Derived data
    • Open Runner
    • File
    • workspace settings
    • Derived data ->
    • delete everything inside derived data *
  • restart computer
  • flutter upgrade

  • pod install? check [[Cocoapods]] - helped

    • sudo gem install cocoapods
  • Now there are breaking changes from third party libraries (drift) - figure those out

    • -> ran flutter pub run build_runner build and was able to regenerate the .g file, that was the issue RUNS!

March 30th 2023

🚨 [Invalid depfile](https://stackoverflow.com/questions/60872753/invalid-depfile-flutter)

fixed by deleting this import command
import 'dart:html';
and running
flutter clean
flutter pub get

April 20th 2023

🚨 Could not find filename pubspec.yaml
fixed with these commands
seems to be an issue with my pubs cache

Also, make sure you are running terminal commands from the root of your project

June 13th 2024 - Signing certificate issues

🚨Uncategorized (Xcode): Command CodeSign failed with a nonzero exit code
Could not build the application for the simulator.
Error launching application on iPhone 15.

🚨 Error (Xcode): Target debug_unpack_ios failed: Exception: Failed to codesign /Users/.../build/ios/Debug-iphonesimulator/Flutter.framework/Flutter with identity -.

found this post - seems issue might be that my file is in the cloud because I sync my folders to iCloud.

Also, find this GitHub issue in the Flutter project.

  • I removed my projects folder from iCloud storage and now I am seeing this error message

🚨 CocoaPods not installed. seems very promising.
Installed pods and back at the very first error message

🚨 Uncategorized (Xcode): Command CodeSign failed with a nonzero exit code Could not build the application for the simulator. Error launching application on iPhone 15.

-> I used .nosync but just found on Reddit that this option won't work. So I am trying out the Reddit option.

🎊 Success!! I finally fixed it! 🎊

I moved my projects folder to the root of my computer, outside the watchful eye 👁️ of iCloud syncing. And finally my code runs! I have tested 2 different projects and they have all been fixed with this, so it seems we are good to go.

This error code deserves a T-shirt or custom shoes!!

Top comments (0)