运行pod install --repo-update时,我得到以下错误:
[!] 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.我曾尝试将use_flipper编号更改为2.6,但也不起作用。
发布于 2021-09-09 23:14:35
我找到on a forum将我的Podfile更改为:
use_flipper!({ 'Flipper' => '0.96.0', 'Flipper-Folly' => '~> 2.6', 'Flipper-RSocket' => '~> 1.4' })请确保删除您的podfile.lock,然后再次运行pod install。
https://stackoverflow.com/questions/69125629
复制相似问题