Android firebase上未显示的事件

Android firebase上未显示的事件,android,firebase,analytics,google-tag-manager,firebase-analytics,Android,Firebase,Analytics,Google Tag Manager,Firebase Analytics,我正在使用Firebase和Google Tag Manager一起查看Firebase和Google analytics的点击率。我是否需要为firebase以及GTM明确设置和激发标签,因为目前我无法在firebase控制台上看到任何活动。我已经设置了google analytics标签,当我将数据从Android推送到firebase时,它会显示在google analytics控制台上,但不会显示在firebase上,因此我需要在GTM控制台中设置firebase标签,同时只通过fire

我正在使用Firebase和Google Tag Manager一起查看Firebase和Google analytics的点击率。我是否需要为firebase以及GTM明确设置和激发标签,因为目前我无法在firebase控制台上看到任何活动。我已经设置了google analytics标签,当我将数据从Android推送到firebase时,它会显示在google analytics控制台上,但不会显示在firebase上,因此我需要在GTM控制台中设置firebase标签,同时只通过firebase触发事件

Bundle bundle = new Bundle();
 bundle.putString("communication", "communication");
 bundle.putString("call", "call");
firebase.logEvent("call", bundle);

此呼叫事件显示在google analytics上,但现在显示在Firebase控制台上,请有人帮助:)

如果您将Firebase与GTM一起使用,您需要在GTM中创建一个Firebase标记,并为每个事件触发它。通过这种方式,您可以在Firebase中查看所有事件

希望这会有所帮助