2

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

enter image description here

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

3 Answers 3

4

try this: go to ios folder and run

pod install --repo-update 
Sign up to request clarification or add additional context in comments.

Comments

1

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'

Comments

0

Following set of steps worked for me:

  1. Run flutter clean
  2. Run flutter pub get
  3. Run flutter pub upgrade
  4. Delete Podfile, Podfile.lock and Pods folder within ios folder of the project
  5. Run flutter clean
  6. Run flutter run

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.