尝试在ios设备上运行React-Native应用程序时,为什么所有RCT...引用"undefined symbol"错误?



我正试图在设备上运行我的第一个React Native应用程序,但构建总是失败,并出现以下错误:

ld: warning: directory not found for option '-L/Users/XXXX/Library/Developer/Xcode/DerivedData/nigh-hktjvygosupgnoaafsvgyowhzsqi/Build/Products/Debug-iphoneos/React'
ld: warning: directory not found for option '-L/Users/XXXX/Library/Developer/Xcode/DerivedData/nigh-hktjvygosupgnoaafsvgyowhzsqi/Build/Products/Debug-iphoneos/React'
ld: warning: directory not found for option '-L/Users/XXXX/Library/Developer/Xcode/DerivedData/nigh-hktjvygosupgnoaafsvgyowhzsqi/Build/Products/Debug-iphoneos/React'
ld: warning: ignoring file /Users/XXXX/Nigh/ReactNativeNigh/Nigh/ios/build/nigh/Build/Products/Debug-iphonesimulator/React/libReact.a, file was built for archive which is not the architecture being linked (arm64): /Users/XXXX/Nigh/ReactNativeNigh/Nigh/ios/build/nigh/Build/Products/Debug-iphonesimulator/React/libReact.a
Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_RCTBridge", referenced from:
objc-class-ref in AppDelegate.o
"_OBJC_CLASS_$_RCTBundleURLProvider", referenced from:
objc-class-ref in AppDelegate.o
"_OBJC_CLASS_$_RCTConvert", referenced from:
objc-class-ref in libRNGestureHandler.a(RNFlingHandler.o)
objc-class-ref in libRNGestureHandler.a(RNForceTouchHandler.o)
objc-class-ref in libRNGestureHandler.a(RNLongPressHandler.o)
objc-class-ref in libRNGestureHandler.a(RNNativeViewHandler.o)
objc-class-ref in libRNGestureHandler.a(RNPanHandler.o)
objc-class-ref in libRNGestureHandler.a(RNGestureHandlerModule.o)
objc-class-ref in libRNGestureHandler.a(RNGestureHandler.o)
...

未找到React目录错误

前面的几件事:

该项目在XCode模拟器上运行良好。

我正在使用cocoapods,并试图从xcWorkspace而不是项目运行构建(尽管目标的完整路径是/Users/XXXX/Nigh/ReactNativeNigh/Nigh/ios/Nigh.xcodeproj,这让我有点困惑(。

我已经移除并重新安装了节点模块,链接并完成了新的pod安装。

看起来我所要做的就是将React添加到Debug iphoneos文件夹中,但我不确定如何做到这一点,也不确定这是否是解决方案。我的第一次尝试是确保React符合该计划的构建目标。它是列表中第一个勾选了所有框的,但出于某种原因,它说React(缺失(。根据React Native/Xcode Upgrade和现在找不到RCTConvert.h,我从Targets列表中删除了React(缺少(,并试图再次添加React,但React甚至没有出现在列表中。此外,Pods/Products文件夹显示的libReact.a与其他.a文件不同,没有Archive(?(图标:

吊舱/产品列表

这是podfile:


require_relative '../node_modules/react-native-unimodules/cocoapods'
target 'nigh' do
# Pods for nigh
use_frameworks!
# pod 'AWSCore', '~> 2.12.0'
pod 'AWSCore', '~> 2.10.2'
pod 'AWSAppSync', '~> 2.14.2'
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge',
'DevSupport',
'RCTActionSheet',
'RCTAnimation',
'RCTBlob',
'RCTGeolocation',
'RCTImage',
'RCTLinkingIOS',
'RCTNetwork',
'RCTSettings',
'RCTText',
'RCTVibration',
'RCTWebSocket',
]
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'RNGestureHandler', :podspec => '../node_modules/react-native-gesture-handler/RNGestureHandler.podspec'
pod 'RNReanimated', :podspec => '../node_modules/react-native-reanimated/RNReanimated.podspec'
pod 'react-native-google-maps', path: '../node_modules/react-native-maps'  # Uncomment this line if you want to support GoogleMaps on iOS
pod 'GoogleMaps'  # Uncomment this line if you want to support GoogleMaps on iOS
pod 'Google-Maps-iOS-Utils' # Uncomment this line if you want to support GoogleMaps on iOS
use_unimodules!

pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
pod 'react-native-maps', :path => '../node_modules/react-native-maps'
pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info'
pod 'react-native-slider', :path => '../node_modules/@react-native-community/slider'
pod 'react-native-notifications', :path => '../node_modules/react-native-notifications'
pod 'react-native-cameraroll', :path => '../node_modules/@react-native-community/cameraroll'
pod 'react-native-image-picker', :path => '../node_modules/react-native-image-picker'
pod 'RNFS', :path => '../node_modules/react-native-fs'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'react-native-google-maps'
target.build_configurations.each do |config|
config.build_settings['CLANG_ENABLE_MODULES'] = 'No'
end
end
#if target.name == "React"
#  target.remove_from_project
#end
end
end

我注释掉了if target.name=="React"块,但无论哪种方式都会出现错误。

我认为问题是React不在该计划的构建目标中,这是对的吗?如果是,有人知道如何将其包括在内吗?如果没有,有人知道真正的原因是什么/如何解决/解决吗?

我认为您的问题来自use_frameworks!,请尝试删除该行,再次删除DerivedData、Pods、xcworkspace、Podfile.lock和pod install

上个月我在升级RN版本时遇到了这个问题。这件愚蠢的事情花了我1周的时间才知道问题,花了20分钟才解决。

希望这能帮助

最新更新