My app is build with single Activity and every screen is simple View.
Activity(stack)
- screen1
- screen2
I log my current screen like this firebaseAnalytics.setCurrentScreen(activity, screenName, null)
where activity is a single activity for every screen and screenName is name of actually screen represented by View.
And this is what do I see in my Firebase dashboard :(

It prints out activity class instead of screen name! Of course, I can navigate to details and switch from Screen classes to Screen names but I must do it every time I open Firebase Dashboard!
How can log my actual Screen class (MainScreenView) instead of one stupid activity AppActivity.
Is there any way to overcome this?
You can use that 3rd parameter of the setCurrentScreen method instead of just sending null. Further reading
firebaseAnalytics.setCurrentScreen(activity, screenName, "YourViewClassNameHere")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With