[react-native] CocoaPods는 “ReactCommon / jscallinvoker”포드에 호환되는 버전을 찾을 수 없습니다.

방금 RN v0.62로 업데이트했으며 iOS에서 앱을 실행하면 다음과 같은 오류가 발생합니다.

!] CocoaPods could not find compatible versions for pod "ReactCommon/jscallinvoker":
  In snapshot (Podfile.lock):
    ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`)

  In Podfile:
    ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`)

None of your spec sources contain a spec satisfying the dependency: `ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`)`.

모든 node_module을 삭제하고 npm i를 수행했습니다. 또한 iOS 디렉토리에 포드를 설치했지만 문제가 지속됩니다. 나는 또한 포드 리포 업데이트를했다.



답변

그래서 알아 냈어요

Podfile에서 다음 줄 바꾸기

pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"

pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"


답변

jscallinvoker버전이 더 이상 사용되지 않는다고 생각합니다.

jscallinvoker

callinvoker


답변