xxxxxxxxxx
# platform :ios, '9.0'
change to
platform :ios, '10.0'
xxxxxxxxxx
I had the same problem, but I solved it like this
rm Podfile.lock
pod install --repo-update
xxxxxxxxxx
for mac M1
cd ios
sudo arch -x86_64 gem install ffi
sudo arch -x86_64 gem install cocoapods cocoapods-clean
arch -x86_64 pod clean setup
arch -x86_64 pod install
xxxxxxxxxx
#go to /ios and open podfile
the top of file
platform :ios, '14.4.2'
'14.4.2' is the lastest verison
xxxxxxxxxx
CocoaPods could not find compatible versions for pod "razorpay_flutter" when running pod install
This is due to your minimum deployment target being less than iOS 10.0. To change this, open ios/Podfile in your project and add/uncomment this line at the top:
# platform :ios, '9.0'
change to
platform :ios, '10.0'
xxxxxxxxxx
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '10.9.0'
change to
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '10.10.0'
xxxxxxxxxx
# Go to ./node-module/react-native-fetch-blob/react-native-fetch-blob.podspec
# change:
s.dependency 'React/Core'
=> s.dependency 'React-Core'
xxxxxxxxxx
# Uncomment this line to define a global platform for your project
platform :ios, '11.0'
xxxxxxxxxx
goto: project-name/ios/Podfile
then uncomment this line
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
replace platform :ios, '9.0' to platform :ios, '10.0'