react-native-community @ datetimepicker在IOS上构建失败

广PB

我遵循手动安装指南https://github.com/react-native-community/datetimepicker#ios

我的Pod文件:

source 'https://github.com/CocoaPods/Specs.git'

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

target 'evnnpc' do
  use_frameworks!

  platform :ios, '9.0'

  pod 'RNDateTimePicker', :path => '../node_modules/@react-native-community/datetimepicker/RNDateTimePicker.podspec'

  # React Native and its dependencies
  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'

  # Other native modules
  pod 'RNGestureHandler', :podspec => '../node_modules/react-native-gesture-handler/RNGestureHandler.podspec'
  pod 'RNReanimated', :podspec => '../node_modules/react-native-reanimated/RNReanimated.podspec'
  pod 'RNScreens', :path => '../node_modules/react-native-screens'

  pod 'RNFirebase', :path => '../node_modules/react-native-firebase/ios'
  # Required by RNFirebase
  pod 'Firebase/Core', '~> 6.13.0'
  pod 'Firebase/Messaging', '~> 6.13.0'

  pod 'react-native-netinfo', :path => '../node_modules/@react-native-community/netinfo'
  pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
  pod 'RNSVG', :path => '../node_modules/react-native-svg'
  pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen'


  use_native_modules!
end

pod installPod文件更新后,我已经运行了。但是在XCode 11.3.1中运行项目时,出现一些错误iOS错误

我不知道为什么它不能成功建立。请帮我!谢谢

迈纳克

将Xcode版本更新为最新版本,在11.6中添加了依赖项...

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

如何使用react-native-community中的datetimepicker

来自分类Dev

使用react-native-community / datetimepicker,如何在Android上显示DateTime选择器?

来自分类Dev

@ react-native-community中的模块

来自分类Dev

无法解决“ @ react-native-community / masked-view

来自分类Dev

排毒与@ react-native-community / async-storage问题?

来自分类Dev

使用expo和@ react-native-community / async-storage

来自分类Dev

react-native-community / CheckBox无法解析模块

来自分类Dev

XCode构建上的react-native-config的PhaseScriptExecution失败

来自分类Dev

React Native,针对iOS构建

来自分类Dev

如何在Windows(React-Native)上为iOS构建?

来自分类Dev

无法在iOS中打开React Native DateTimePicker

来自分类Dev

iOS 上的 React Native Expo 网络请求失败

来自分类Dev

react-native-maps构建失败

来自分类Dev

React Native iOS 构建因以下错误而失败:找不到架构 arm64 的符号

来自分类Dev

React-native IOS:网络请求失败

来自分类Dev

React-native IOS [网络请求失败]

来自分类Dev

尝试使用@ react-native-community / slider时,在UI Manager中找不到RNCSlider

来自分类Dev

如何修复 React-Native run-android 上的构建失败?

来自分类Dev

React Native Packager在节点6.5上失败

来自分类Dev

失败:构建失败,并出现以下异常:React Native

来自分类Dev

React Native上的gRPC

来自分类Dev

React Native上的MQTT?

来自分类Dev

React Native上的gRPC

来自分类Dev

React-Native:iOS上的Axios问题

来自分类Dev

React Native是否支持IOS上的晴雨表

来自分类Dev

IOS 上的 NotificationHub 注册问题(React Native)

来自分类Dev

react-native:构建失败,出现异常

来自分类Dev

React-native构建失败:“无法创建任务':app:copyDownloadableDepsToLibs'”

来自分类Dev

React Native-构建应用

Related 相关文章

  1. 1

    如何使用react-native-community中的datetimepicker

  2. 2

    使用react-native-community / datetimepicker,如何在Android上显示DateTime选择器?

  3. 3

    @ react-native-community中的模块

  4. 4

    无法解决“ @ react-native-community / masked-view

  5. 5

    排毒与@ react-native-community / async-storage问题?

  6. 6

    使用expo和@ react-native-community / async-storage

  7. 7

    react-native-community / CheckBox无法解析模块

  8. 8

    XCode构建上的react-native-config的PhaseScriptExecution失败

  9. 9

    React Native,针对iOS构建

  10. 10

    如何在Windows(React-Native)上为iOS构建?

  11. 11

    无法在iOS中打开React Native DateTimePicker

  12. 12

    iOS 上的 React Native Expo 网络请求失败

  13. 13

    react-native-maps构建失败

  14. 14

    React Native iOS 构建因以下错误而失败:找不到架构 arm64 的符号

  15. 15

    React-native IOS:网络请求失败

  16. 16

    React-native IOS [网络请求失败]

  17. 17

    尝试使用@ react-native-community / slider时,在UI Manager中找不到RNCSlider

  18. 18

    如何修复 React-Native run-android 上的构建失败?

  19. 19

    React Native Packager在节点6.5上失败

  20. 20

    失败:构建失败,并出现以下异常:React Native

  21. 21

    React Native上的gRPC

  22. 22

    React Native上的MQTT?

  23. 23

    React Native上的gRPC

  24. 24

    React-Native:iOS上的Axios问题

  25. 25

    React Native是否支持IOS上的晴雨表

  26. 26

    IOS 上的 NotificationHub 注册问题(React Native)

  27. 27

    react-native:构建失败,出现异常

  28. 28

    React-native构建失败:“无法创建任务':app:copyDownloadableDepsToLibs'”

  29. 29

    React Native-构建应用

热门标签

归档