Successfully resolved CocoaPods could not find compatible versions for pod “RCT-Folly”

⭐️Background : When I run the react-native ios project, the following error occurs when I run pod install

(1) The screenshot is as followsinsert image description here
(2) The details of the error report are as follows

[!] CocoaPods could not find compatible versions for pod "RCT-Folly":
  In snapshot (Podfile.lock):
    RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)

  In Podfile:
    RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)

It seems like you've changed the version of the dependency `RCT-Folly` and it differs from the version stored in `Pods/Local Podspecs`.
You should run `pod update RCT-Folly --no-repo-update` to apply changes made locally.

⭐️Solution Execute pod update RCT-Folly --no -
repo-update under the ios project

@MacBook-Pro ios % pod update RCT-Folly --no-repo-update 
Auto-linking React Native modules for target `Call`: RNCAsyncStorage, RNCallKeep, RNDeviceInfo, RNNotifee, RNScreens, RNSound, react-native-safe-area-context, react-native-express-engine, react-native-zim, react-native-zpns, and uikit-prebuilt-call-rn
[Codegen] Generating ./build/generated/ios/React-Codegen.podspec.json
fatal: not a git repository (or any of the parent directories): .git
Analyzing dependencies
Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`
[Codegen] Found FBReactNativeSpec
Fetching podspec for `RCT-Folly` from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`
Fetching podspec for `boost` from `../node_modules/react-native/third-party-podspecs/boost.podspec`
Fetching podspec for `glog` from `../node_modules/react-native/third-party-podspecs/glog.podspec`
Fetching podspec for `hermes-engine` from `../node_modules/react-native/sdks/hermes/hermes-engine.podspec`

————————————————
Copyright statement: This article is the original article of CSDN blogger "Xiao Wang on the road", following the CC 4.0 BY-SA copyright agreement, please attach the original source for reprinting link and this statement.

Guess you like

Origin blog.csdn.net/m0_48915964/article/details/130294432