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
If you encounter this error while running the iOS simulator, I resolved it by following the steps and redownloading all the pods, which allowed me to successfully run it on the simulator again.
flutter clean
rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf ios/Flutter/Flutter.podspec
flutter pub get
cd ios
pod install # (or on an M1+ mac: arch -x86_64 pod install)
cd ..
flutter build ios
flutter run
If you encounter this error while running the iOS simulator, I resolved it by following the steps and redownloading all the pods, which allowed me to successfully run it on the simulator again.
source: https://stackoverflow.com/a/65459404
The text was updated successfully, but these errors were encountered: