Flutter: Cocoapods's Specs Repository Is Too Out-Of-Date to Satisfy Dependencies

Error updating CocoaPods after upgrading to flutter 3.0.1

This is what I had to do..

First, update the FFI

sudo arch -x86_64 gem install ffi

Navigate to the project's ios folder...

Now update the pods for M1 Chip

arch -x86_64 pod update

Now install pods for M1 Chip

arch -x86_64 pod install

Xcode error on flutter project Mac mini M1 2020

You need to change Minimum Deployments('IPHONEOS_DEPLOYMENT_TARGET') to 11 :

enter image description here

The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, in Flutter How can I change the minimum IOS Deploying Target

How do I resolve the pod install error on flutter?

As the error said, we have incompatibility with the firebase package so:
I went to the Podfile and upgrade to 10 (platform :ios, '10.0') and the error go away;

as additional note:
I had that line commented before, so my first try was uncomment and upgrade to 9, but it wasn't work.



Related Topics



Leave a reply



Submit