2

When running pod install --repo-update, I get the following error:

[!] CocoaPods could not find compatible versions for pod "Flipper-Folly":


In Podfile:
    Flipper-Folly (= 2.6.0)

Specs satisfying the `Flipper-Folly (= 2.6.0)` dependency were found, but they required a higher minimum deployment target.

I've tried changing the use_flipper number to 2.6 but that doesn't work either.

qingy2019
  • 536
  • 7
  • 23
Ian
  • 1,746
  • 1
  • 15
  • 28

1 Answers1

3

I found on a forum to change my Podfile to:

  use_flipper!({ 'Flipper' => '0.96.0', 'Flipper-Folly' => '~> 2.6', 'Flipper-RSocket' => '~> 1.4' })

Make sure to delete your podfile.lock and then run pod install again.

Ian
  • 1,746
  • 1
  • 15
  • 28