Hello sir
I have successfully integrated firebase analytics in my android app. and i am logging event using below code
if ((activity!! as UserActivity).firebaseAnalytics != null) {
(activity!! as UserActivity).firebaseAnalytics.logEvent(
"SUBSCRIBE",
null
)
}in logcat, it will display
Logging event (FE): SUBSCRIBE,
Bundle[{ga_event_origin(_o)=app, ga_screen_class(_sc)=UserActivity,
ga_screen_id(_si)=7721806769597664361}]
In debugable view ,it also display real time event but in dashboard its not showing
So what is the issue behind this ? is there any setting or customization needed for display in dashboard event ?
Thanks in advance