首页 > 解决方案 > react native [[DEFAULT]] firebaseapp 未初始化 react-native-firebase

问题描述

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

我得到的错误:

在此处输入图像描述

我遵循的步骤:

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

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

标签: iosreactjsfirebasereact-nativereact-redux

解决方案


修改你的AppDelegate.hAppDelegate.m文件

AppDelegate.h加上这个,

#import <Firebase.h>

AppDelegate.m添加[FIRApp configure];

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

@implementation AppDelegate

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  [FIRApp configure]; // <=== Add this line

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

  return YES;
}

@end

推荐阅读