4

[!] CocoaPods could not find compatible versions for pod "React-perflogger": In Podfile: React-perflogger (from ../node_modules/react-native/ReactCommon/reactperflogger)

Specs satisfying the React-perflogger (from ../node_modules/react-native/ReactCommon/reactperflogger) dependency were found, but they required a higher minimum deployment target.

sam chaudhari
  • 756
  • 1
  • 12
  • 24

4 Answers4

5

Edit your Podfile replacing platform :ios, '10.0' to platform :ios, '11.0', then run pod install --repo-update

2

For me, running npm install in the root directory and then running pod install in the ios directory again, fixed this issue.

1

After updating to Expo version 47 (from 44), I've had indeed to change platform :ios, but from version '12.0'toplatform :ios, '11.0', then pod install --repo-update` indeed helped.

Basically, it's about updating the minimum iOS version to what's required by the requested podspecs. In the future, you might just try different values.

Daniel Danielecki
  • 8,508
  • 6
  • 68
  • 94
0

I removed the IOS folder and used eject to regenerate (https://stackoverflow.com/a/52430164/9611924). Afterwards pod install worked fine.

bieboebap
  • 320
  • 3
  • 18