CocoaPods konnte keine kompatiblen Versionen für den Pod „ReactCommon / jscallinvoker“ finden:

42

Ich habe gerade auf RN v0.62 aktualisiert und das Ausführen der App unter iOS gibt mir folgenden Fehler

!] 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`)`.

Ich habe alle node_modules gelöscht und npm i gemacht. Ich habe auch eine Pod-Installation im iOS-Verzeichnis durchgeführt, aber das Problem besteht weiterhin. Ich habe auch ein Pod Repo Update gemacht.

Schubs
quelle

Antworten:

133

Also finde ich es heraus

Ersetzen Sie die folgende Zeile in Ihrem Podfile

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

mit

pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"
Schubs
quelle
2
das hat bei mir funktioniert!
Kakajann
Arbeitete perfekt für mich als wel l
Kasra vor
17

Ich denke, jscallinvokerVersion ist veraltet versuchen, zu ersetzen

jscallinvoker 

zu

callinvoker
Terrius
quelle