2

安装 pod 时出现以下错误。

The name of the given podspec `Yoga` doesn't match the expected one `yoga`

在 Podfile 中,这些是唯一带有瑜伽这个词的行,它们是小写的......所以我不知道是什么导致了这个问题......

pod 'yoga',
    :path => "../node_modules/react-native/ReactCommon/yoga",
    :inhibit_warnings => true

怎么解决?

4

2 回答 2

4

看起来应该是pod 'Yoga'。见https://github.com/facebook/react-native/blob/master/ReactCommon/yoga/Yoga.podspec#L18

于 2020-04-18T15:32:38.710 回答
0

当你.podfile pod '<name>'不相等时.podspec <variable>.name = "name",你得到

The name of the given podspec `<name>` doesn't match the expected one
于 2021-04-21T17:08:47.453 回答