【问题标题】:React Native Firebase error Thread 1 SIGABRT - iOSReact Native Firebase 错误线程 1 SIGABRT - iOS
【发布时间】:2018-04-01 10:50:54
【问题描述】:

问题

按照react-native-firebase 的教程进行操作后,我的应用程序在成功构建后挂起。我在 Xcode 中得到的错误是:Thread 1: signal SIGABRT。我从其他问题中了解到,这与连接有关,但我不知道为什么会出现此错误。

这是我的第一个 React Native 项目,也是第一次使用 Xcode。

我做了什么

  1. 我添加了react-native-firebasefirebase
  2. react-native link react-native-firebase
  3. 通过将 GoogleService-Info.plist 拖入 Xcode 编辑器,将其添加到项目中。
  4. 停止所有 Xcode 任务并退出 Xcode。
  5. 做了pod init
  6. 将 podfile 调整为以下内容:

    # Uncomment the next line to define a global platform for your project
    platform :ios, '9.0'
    
    target 'Enso' do
    # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
    # use_frameworks!
    
      # Pods for Enso
        pod 'Firebase/Core'
    
    end
    
  7. 做了pod install
  8. 打开了 xcworkspace 文件
  9. #import <Firebase.h>[FIRApp configure]; 添加到AppDelegate.m
  10. 清理项目
  11. 运行项目
  12. 项目构建成功,但应用一直挂在白屏上,显示应用名称和“Powered by React Native”。
  13. 大约 10 秒后,Xcode 编辑器将显示以下内容:Image with error in Xcode

更多信息

我有这些Linked Frameworks and Libraries

  • libRNSVG.a
  • libRNBackgroundTimer.a
  • libRNFirebase.a
  • libART.a
  • libRCTBlob.a
  • libReact.a
  • libRCTAnimation.a
  • libRCTActionSheet.a
  • libRCTGeolocation.a
  • libRCTImage.a
  • libRCTLinking.a
  • libRCTNetwork.a
  • libRCTSettings.a
  • libRCTText.a
  • libRCTVibration.a
  • libRCTWebSocket.a
  • libPos-Enso.a

我的Header Search Paths中有这个:

  • $(继承)
  • $(SRCROOT)/../node_modules/react-native-background-timer/ios
  • $(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase
  • $(SRCROOT)/../node_modules/react-native-svg/ios
  • $(SRCROOT)/../ios/Pods
  • $(SRCROOT)/../node_modules/react-native/React

【问题讨论】:

标签: ios firebase react-native sigabrt react-native-firebase


【解决方案1】:

看起来GoogleAppMeasurement 被导入为版本5.3.0 的依赖项。

像下面这样对Podfile 的简单补充解决了我的问题。

# Required by RNFirebase
pod 'Firebase/Core', '~> 5.9.0'
pod 'GoogleAppMeasurement', '~> 5.2.0'

如图所示

【讨论】:

  • 解决了我的问题!谢谢!
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-05-10
  • 2018-09-18
  • 1970-01-01
相关资源
最近更新 更多