Tom*_*ong 4 react-native react-native-ios
将 RN 从 RN0.60 升级到 RN0.61。由于以下问题,iOS 构建失败:
/react-native/React/Base/RCTBridgeModule.h:10:9: 'React/RCTDefines.h' file not found
Run Code Online (Sandbox Code Playgroud)
我知道这一重大变化。(不推荐使用 React.xcodeproj)
尝试一些事情
这是我的 podfile 的样子。
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
pod 'React', :path => '../node_modules/react-native/'
pod 'React-Core', :path => '../node_modules/react-native/'
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
pod 'ReactCommon/jscallinvoker', :path => '../node_modules/react-native/ReactCommon'
pod 'ReactCommon/turbomodule/core', :path => '../node_modules/react-native/ReactCommon'
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'
# Required by RNFirebase
pod 'Firebase/Core', '~> 6.9.0'
pod 'RNFirebase', :path => '../node_modules/react-native-firebase/ios'
pod 'Fabric', '~> 1.10.2'
pod 'Crashlytics', '~> 3.14.0'
# FBSDK
pod 'react-native-fbsdk', :path => '../node_modules/react-native-fbsdk'
pod 'react-native-netinfo', :path => '../node_modules/@react-native-community/netinfo'
pod 'react-native-image-picker', :path => '../node_modules/react-native-image-picker'
pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen'
pod 'react-native-webview', :path => '../node_modules/react-native-webview'
Run Code Online (Sandbox Code Playgroud)
这是我花了一整天时间挖掘原因后的解决方案,
.
.
.
.
对于抱怨无法找到React/{whatever.h} 的任何第 3 方/自定义库,您需要将 .podspec 添加到 podfile
如果您使用的是3rd 方库(Yarn/NPM/etc)
从其他 3rd 方库(例如 RNDeviceInfo/etc..)复制 podspec
通过替换一些项目(s.name,s.source)来创建自己的 podspec我实际上将其他项目保留为默认值,但如果需要,您可以根据自己的使用情况进行修改
s.name = "NoSupportedLib"
s.source = { :git => "https://github.com/react-native-community/NoSupportedLibName.git", :tag => "v#{s.version}" }
Run Code Online (Sandbox Code Playgroud)
您可能需要注意以下事项,因为并非所有依赖项都可能存储在文件夹路径下 ios/**/your.m & your.h files
s.source_files = "ios/**/*.{h,m}"
Run Code Online (Sandbox Code Playgroud)
将新行添加到 podfile
pod 'NoSupportedLib', :path => '../node_modules/NoSupportedLib'
Pod 安装
如果您有本地依赖项,您也应该这样做(而不是将 .a 文件添加到 Xcode 的链接框架和库中。)
s.source = { :http => 'file:' + __dir__ + '/' }
s.source_files = "customLib/*.{h,m}"
Run Code Online (Sandbox Code Playgroud)
pod 'customLib', :path => '../localDependency/customLib'
Run Code Online (Sandbox Code Playgroud)
我尝试在我的计划下添加React作为构建目标,显然它没有帮助。我认为对于 >=RN0.60 的项目,我们打算使用ReactNative 提供的自动链接吗?因此,保持我们 Xcode 的链接框架和库干净。
归档时间: |
|
查看次数: |
9645 次 |
最近记录: |