When I run my flutter app without firebase authentication, all works just fine. However, it appears that when I use the firebase authentication package, that it triggers some major issues with my pods.
I am currently using firebase_auth: ^0.20.1
, and this is the only dependency that has been changed since I last got the app working.
Now, I am getting this error:
CDN: trunk Relative path: CocoaPods-version.yml exists! Returning local because checking is only perfomed in repo update
[!] CocoaPods could not find compatible versions for pod "firebase_auth":
In Podfile:
firebase_auth (from `.symlinks/plugins/firebase_auth/ios`)
Specs satisfying the `firebase_auth (from `.symlinks/plugins/firebase_auth/ios`)` dependency were found, but they required a higher minimum deployment target.
I have tried numerous different methods to rectify, including
1. rm -rf Podfile.lock
2. pod install
1. flutter clean
2. pod repo update
3. pod install
and various other combinations, but it now returns the error that [!] No
Podfile' found in the project directory.despite the ios folder still having a
Podfileand a
Podfile.lock`
Any advice to troubleshoot or a potential fix?