You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes users say the build works perfectly locally, but not on Codemagic.
Running this sequence of commands usually helps them to reproduce the same error locally, as this issue usually occurs when dependencies are updated, but the lock file still points to the old versions.
pod cache clean --all
rm -rf ~/Library/Caches/CocoaPods
rm -rf Pods
rm -rf Podfile.lock
rm -rf ~/Library/Developer/Xcode/DerivedData/*
pod deintegrate
flutter clean
flutter pub get
pod install
This ensures your Flutter iOS project starts with a clean, and it forces CocoaPods to resolve and fetch the latest compatible versions of dependencies as defined in Podfile
The text was updated successfully, but these errors were encountered:
Sometimes users say the build works perfectly locally, but not on Codemagic.
Running this sequence of commands usually helps them to reproduce the same error locally, as this issue usually occurs when dependencies are updated, but the lock file still points to the old versions.
This ensures your Flutter iOS project starts with a clean, and it forces CocoaPods to resolve and fetch the latest compatible versions of dependencies as defined in Podfile
The text was updated successfully, but these errors were encountered: