79599983

Date: 2025-04-30 09:20:22
Score: 0.5
Natty:
Report link

When I have pods issues, I often do a full clean to have a fresh install :

flutter clean
flutter pub cache clean 
rm -rf Pods
rm -rf .symlinks
rm -rf Flutter/Flutter.podspec
rm Podfile.lock
rm -rf build
rm -rf ~/Library/Developer/Xcode/DerivedData
flutter pub get
cd ios
pod repo update
pod install
cd ..
flutter build ipa --release

Maybe that can help you.
Warning : 'flutter pub cache clean' => it cleans all the pubs you have in cache, for all projects. You'll have to run 'flutter pub get' in every single project you want to open.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When I have
  • Low reputation (1):
Posted by: Listhesis