Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does firebase_screen_class mean

Tags:

ios

firebase

I'm now using Firebase Analytics to analyze the data about an app and I'm quite new to this field. In the bigquery, I found that under the session_start event field, there is a subfield called firebase_screen_class and there are some subclass like FirstViewController, UIAlertController, preferencetableviewCotroller, PagescrollviewController. I tried to figure out what these mean and knew that these are relevant to the IOS app development. Is there anyone can help me better understand these terms or give me some helpful links for me to learn myself?

Thanks!!!

like image 323
Jie Avatar asked Jul 02 '18 16:07

Jie


People also ask

What is User_pseudo_id?

If you're only interested in finding events belonging to the same user for the same app on a single device, you can use the user_pseudo_id . This value is generated automatically by Analytics and is stored within BigQuery for each event.

What is First_open?

first_open. (app) the first time a user launches an app after installing or re-installing it. This event is not triggered when a user downloads the app onto a device, but instead when he or she first uses it. To see raw download numbers, look in Google Play Developer Console or in iTunesConnect.

What is Session_start event?

When a session starts, Google automatically collects a session_start event and generates a session ID ( ga_session_id ) and session number ( ga_session_number ) via the session_start event. Session ID identifies the session that an event came from.


1 Answers

Let's suppose you're looking at the automatic screen_view event that firebase tracks for you.

firebase_screen_class is the name of the class that triggered it. It will be something like "MyClassViewController" for iOS and "MyClassActivity" for Android.

You can find more info here.

https://support.google.com/firebase/answer/7061705?hl=us-EN

like image 151
Pedro Braz Avatar answered Sep 16 '22 13:09

Pedro Braz