Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase screen name is showing not set

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.

Firebase Issue

like image 267
Akshay Avatar asked Jun 20 '18 15:06

Akshay


People also ask

What is not set in firebase Analytics?

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.

What is Screen_view event in firebase?

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.

Does firebase use advertising ID?

By default, on Android the SDK collects the Advertising ID.

What does screen view mean?

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.


1 Answers

put

analytics.setCurrentScreen(this, "Screen Name", this.getClass().getSimpleName());

in onResume().

like image 99
Nitish Kumar Avatar answered Sep 17 '22 23:09

Nitish Kumar