1

[!] CocoaPods could not find compatible versions for pod "Flipper-Glog": In Podfile: Flipper-Glog (= 0.5.0.4)

None of your spec sources contain a spec satisfying the dependency: Flipper-Glog (= 0.5.0.4).

You have either:

  • out-of-date source repos which you can update with pod repo update or with pod install --repo-update.
  • mistyped the name or version.
  • not added the source repo that hosts the Podspec to your Podfile.
Rakshith123
  • 89
  • 2
  • 5
  • Does this answer your question? ["\`pod repo update\` does not happen" error in CocoaPods](https://stackoverflow.com/questions/38030317/pod-repo-update-does-not-happen-error-in-cocoapods) – Arasuvel Apr 05 '22 at 12:16

5 Answers5

8

Disable everything related to flipper in Podfile and then cd ios && pod install

# use_flipper!()
Raj Rohit Yadav
  • 403
  • 2
  • 7
8

Worked after using this command:

pod install --repo-update
ZameerMoh
  • 1,149
  • 1
  • 17
  • 26
0

If you are building from a fresh Reach Native Project, there should be no need to edit any files in the project to get it to run.

Try the solutions here: React native ios - error when running pod install (installing Flipper-Glog)

I encountered this problem after deleting all my iOS caches and setting some Virtual Env. Opening Xcode and simulator once then try "pod install" should work.

David
  • 151
  • 1
  • 5
0

Remove or comment this line from your ios/Podfile in react native.

# use_flipper!()
Muhammad Haidar
  • 1,541
  • 16
  • 17
-1

For M1 chip Mac, run
"arch -x86_64 pod install"
solved it.

Yunnosch
  • 26,130
  • 9
  • 42
  • 54
  • I shrunk this to an answer. please review the syntax (I am not sure about whether you mean the `"` to actually be part of the code). Also, please consider to add an explanation of how your code works and why it helps. – Yunnosch Sep 12 '22 at 13:42