React-Native Firebase自定义事件未在iOS上的DebugView模式下显示

时间:2018-05-09 17:42:09

标签: firebase react-native react-native-firebase

所以我跟踪了所有instructions,安装了库并将其与react-native link react-native-firebase

相关联

在我的AppDelegate.m中添加了correct code,并在我的XCode项目中添加了GoogleService-Info.plist文件。

我还在启动时传递的参数中添加了-FIRAnalyticsDebugEnabled-FIRDebugEnabled,如documentation said

user_engagementfirst_open这样的事件正确显示,所以我猜我的配置没问题,但我的自定义事件在DebugView中根本没有显示。

React-Native-Firebase documentation it says

  

默认应用程序是本机预初始化的,因此无需为默认应用程序实例调用initializeApp。

但是在我尝试关注的this example中,他使用initializeApp和参数debug: false来显示事件。

我尝试过的代码:

import RNFirebase from 'react-native-firebase';

const firebaseApp = RNFirebase.initializeApp({ debug: false });
firebaseApp.analytics().logEvent("test_event");

我做了同样的事情而且根本没用。在DebugView上发送事件的正确语法是什么?我在这里有点失落。谢谢!

我正在使用RN:0.52.0

0 个答案:

没有答案