Reputation: 7105
After upgrading the flutter version to the latest Flutter 2.2.1, it gives an error running pod install, on running app on ios simulator
I have tried cleaning pods by performing the following commands but it did not fix the issue
flutter clean
flutter pub get
rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf ios/Flutter/Flutter.podspec
rm ios/Podfile
and Finally
flutter run
Upvotes: 2
Views: 6179
Reputation: 4930
run this code on the terminal
sudo arch -x86_64 gem install ffi
Next, go to the ios folder in your project, and open Podfile.
remove the #
character and change the 9.0
to 10.0
, and the final code should be like the below
platform :ios, '10.0'
Upvotes: 1
Reputation: 462
Following set of steps worked for me:
flutter clean
flutter pub get
flutter pub upgrade
Podfile
, Podfile.lock
and Pods
folder within ios folder of the projectflutter clean
flutter run
Upvotes: 0
Reputation: 434
try this: go to ios folder and run
pod install --repo-update
Upvotes: 4