2

运行时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但这也不起作用。

4

1 回答 1

2

在论坛上发现将我的 Podfile 更改为:

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

确保删除您的 podfile.lock 然后pod install再次运行。

于 2021-09-09T23:14:35.070 回答