gpt4 book ai didi

javascript - 升级到 React Native 0.63.0 后 Pod 安装错误

转载 作者:行者123 更新时间:2023-12-01 15:40:58 24 4
gpt4 key购买 nike

我使用的是 React Native 版本 0.62.2现在我升级到版本 0.63.0在运行 npx pod-install 之后安装 Pod 包时出现此错误:

CocoaPods could not find compatible versions for pod “ReactCommon/callinvoker”:


enter image description here

最佳答案

实际上,我只是删除了 Podfile.lock并删除整个 Podfile并从新安装的 React Native 中添加新内容最新版本的项目,这意味着它的内容应该是:

require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
require_relative '../node_modules/react-native/scripts/react_native_pods'

platform :ios, '10.0'

target '[YourProjectName]' do
config = use_native_modules!
use_react_native!(:path => config["reactNativePath"])

target '[YourProjectName]Tests' do
inherit! :complete
# Pods for testing
end

# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
use_flipper!
post_install do |installer|
flipper_post_install(installer)
end
end

target '[YourProjectName]-tvOS' do
# Pods for [YourProjectName]-tvOS

target '[YourProjectName]-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
备注 : 很明显你应该用 [YourProjectName] 替换你的项目名称.
提示 : 如果您使用手动链接,请取消所有链接,我对 react-native-vector-icons 的手动链接有严重问题
之后,运行 npx pod-install命令在项目的根目录下,一切都会回到正轨。

关于javascript - 升级到 React Native 0.63.0 后 Pod 安装错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62931404/

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