问题
遵循react-native-firebase教程后,我的应用程序在成功构建后挂起。我在 Xcode 中遇到的错误是:Thread 1: signal SIGABRT
. 我从其他问题中了解到这与连接有关,但我不知道为什么会发生此错误。
这是我的第一个 React Native 项目,也是第一次使用 Xcode。
我做了什么
- 我添加了
react-native-firebase
和firebase
。 - 冉
react-native link react-native-firebase
。 - 通过将 GoogleService-Info.plist 拖到 Xcode 编辑器中,将其添加到项目中。
- 停止所有 Xcode 任务并退出 Xcode。
- 做了一个
pod init
。 将 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
- 做了一个
pod install
- 打开 xcworkspace 文件
- 添加了
#import <Firebase.h>
and[FIRApp configure];
到AppDelegate.m
- 清理项目
- 运行项目
- 项目构建成功,但应用程序一直挂在白屏上,显示应用程序名称和“由 React Native 提供支持”。
- 大约 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