Error message
[!] CocoaPods could not find compatible versions for pod "cloud_firestore":
In Podfile:
cloud_firestore (from .symlinks/plugins/cloud_firestore/ios
)
Solution
- Go to ios/Pods/Local Podspevs directory in your project
- Check every json file to find highest required ios version. Mine was "ios": "10.0" in some of them
- Go back to ios/ directory
- Open Podfile file
- Uncomment # platform :ios, '9.0' and replace 9.0 with version from 2. step, for example 10.0. # platform :ios, '9.0' > platform :ios, '10.0'
- Run pod install, error should be gone
Top comments (0)