gpt4 book ai didi

reactjs - react native : Podfiles causing name collusions

转载 作者:行者123 更新时间:2023-12-03 13:39:02 24 4
gpt4 key购买 nike

我收到错误:

Ambiguous resolution: module ".../myModule.js" tries to require 'react-native', but there are several files providing this module. You can delete or fix them:

.../MyProject/ios/Pods/React/package.json

.../MyProject/node_modules/react-native/package.json

我几乎可以肯定这是由于使用 Podfiles 造成的,特别是当他们安装“React”文件夹时。但是,我必须使用 Podfiles 才能安装 react-native-firebase。话虽如此,当我删除 Pods 文件夹 (ios/Pods/React) 下的 React 文件夹时,我无法再使用 react-native-firebase

GitHub 上有一个修复程序,建议在 Podfile 中附加以下内容:

post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "React"
target.remove_from_project
end
end
end

但这对我不起作用。有人遇到过这个问题吗?

如果相关,这是我正在使用的 podfile:

platform :ios, '8.0'

target 'MyProject2' do
pod 'Firebase/Core'
pod 'Firebase/Database'
pod 'Firebase/Messaging'

pod 'RNSVG', :path => '../node_modules/react-native-svg'

target 'MyProject2Tests' do
inherit! :search_paths
# Pods for testing
end

post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "React"
target.remove_from_project
end
end
end

end

编辑:当我从 Podfile 中删除“RNSVG”时,收到一条错误消息:“不变违规:‘RNSVGPath’的 native 组件不存在”。我都运行了react-native链接并按照react-native-svg的手动安装说明进行操作。

最佳答案

我必须手动将 React pod 链接到 node_modules:

pod 'React', :path => '../node_modules/react-native'

关于reactjs - react native : Podfiles causing name collusions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49410624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com