I have created a project in Google Firebase Analytics
and I am able to log screen names in the console. But for one screen screen_view
is not recorded and it is showing as not set in the screen view list. I have used a default function for logging screen view event (i.e. setCurrentScreen()).
I am using Firebase:16.0.0
version. Can anyone please guide me for this.
Most likely these are events that are not setting the screen name, or for which a screen name doesn't exist. For example of the latter, think of application_start , which happens before a screen is known.
Automatically track screens If your app uses a distinct UIViewController or Activity for each screen, Analytics can automatically track every screen transition and generate a report of user engagement broken down by screen. If your app doesn't, you can still get these reports by manually logging screen_view events.
By default, on Android the SDK collects the Advertising ID.
Screenview in Google Analytics represent content users are viewing within an app. The equivalent concept for a website is pageview . Measuring screen views allows you to see which content is being viewed most by your users, and how are they are navigating between different pieces of content.
put
analytics.setCurrentScreen(this, "Screen Name", this.getClass().getSimpleName());
in onResume()
.
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