OGeek|极客世界-中国程序员成长平台

标题: ios - react native [[DEFAULT]] firebaseapp 未初始化 react-native-firebase [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 04:19
标题: ios - react native [[DEFAULT]] firebaseapp 未初始化 react-native-firebase

我正在尝试将 react-native-firebase 模块与 react native 一起使用。

我得到的错误:

enter image description here

我遵循的步骤:

Step1:创建基本应用程序

react-native init myFirebaseApp

移至项目

cd myFirebaseApp

已安装的模块

npm install --save react-native-firebase

第 2 步:设置 Firebase SDK (https://rnfirebase.io/docs/v4.2.x/installation/ios)

创建了 Firebase 应用并下载了适用于 iOS 的 GoogleService-Info.plist

复制

GoogleService-Info.plist

在项目中,然后

pod init

将这些行添加到 pod 文件中

  pod 'Firebase/Core'
  pod 'Firebase/Firestore'

已安装的依赖项

pod install

最后是链接库

react-native link

有人可以指导我缺少什么或做错了什么?



Best Answer-推荐答案


修改您的 AppDelegate.hAppDelegate.m 文件

AppDelegate.h中添加这个,

#import <Firebase.h>

并在AppDelegate.m中添加[FIRApp configure];

#import <React/RCTRootView.h>
#import <ReactNativeNavigation/ReactNativeNavigation.h>

@implementation AppDelegate

 - (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions
{
  [FIRApp configure]; // <=== Add this line

  NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot"index" fallbackResource:nil];
  [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];

  return YES;
}

@end

关于ios - react native [[DEFAULT]] firebaseapp 未初始化 react-native-firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50815094/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://sqlite.in/) Powered by Discuz! X3.4