I'm trying to analyze user activity in user explorer in GA4.
I'm sending custom events in android via:
bundle.putString(com.google.firebase.analytics.FirebaseAnalytics.Param.SCREEN_NAME, screenName);
bundle.putString(com.google.firebase.analytics.FirebaseAnalytics.Param.SCREEN_CLASS, screenClass);
getFirebaseAnalyticsInstance().logEvent(com.google.firebase.analytics.FirebaseAnalytics.Event.SCREEN_VIEW, bundle);
and it does shows in User Explorer:
The only problem is I cant see the exact screen name. But I want to see it, so I can analyze user experience.
So, what should I do to make it work? Create new custom definiton for screen_name? I with there will be not screen_view event, but actuall screen_name shown.
I have custom definition screen_id
which just is shown here for some reason. (I've created this definition long time ago to for screen_changed event)