"FirebaseAnalytics.Param.SIGN_UP_METHOD" cannot save the "value" along with the "event name" in the console

I use this code to parse the sign_up method that the user uses:

Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.SIGN_UP_METHOD, "sign_up_method"); mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SIGN_UP, bundle); 

as soon as the user logs in, the above code should save the event in the Firebase console.

The problem is that the event is raised, but nothing in the value column, i.e. sign_up_method not displayed.

Here is a snapshot from the console (event name: sign_up is sign_up , but instead of sign_up_method there is - ):

enter image description here

What is wrong here?

Please let me know.

0
source share
1 answer

I asked the same question on the Firebase support team and they told me that

Unfortunately, not all parameters are presented directly in your analytics reports. It is available only in a subset of the proposed Events. But they can be used as filters in the Audience definitions for each report. They are also included in data exported to BigQuery if your application is associated with a BigQuery project.

So, bind the application to BigQuery or get satisfaction from what Firebase has to provide.

+3
source

All Articles