我已经在我的离子v1应用程序中成功安装了cordova-plugin-firebase插件 .

https://github.com/arnesson/cordova-plugin-firebase

我试图弄清楚如何分析我的离子v1应用程序中触发的特定事件 .

例如,我在下面尝试了这个,但我在应用的Firebase信息中心中看不到任何这些信息:

window.FirebasePlugin.logEvent("select_content", {content_type: "page_view", item_id: "home"});
  window.FirebasePlugin.setScreenName("Advertisement 1");

以下是分析跟踪的屏幕截图 . 没有显示特定事件:

问题是如何使用cordova-plugin-firebase插件在离子v1上使用Firebase Analytics跟踪特定事件?