12

问题

遵循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>and[FIRApp configure];AppDelegate.m
  10. 清理项目
  11. 运行项目
  12. 项目构建成功,但应用程序一直挂在白屏上,显示应用程序名称和“由 React Native 提供支持”。
  13. 大约 10 秒后,Xcode 编辑器将向我显示以下内容:Xcode 中有错误的图像

更多信息

我有这些Linked Frameworks and Libraries

  • 库RNSVG.a
  • libRNBackgroundTimer.a
  • libRNFirebase.a
  • libART.a
  • 库RCTBlob.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
4

1 回答 1

1

看起来像GoogleAppMeasurement作为依赖项导入 version 5.3.0

对以下类似内容的简单补充Podfile为我解决了这个问题。

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

如这里所示

于 2018-11-05T11:14:11.983 回答