'firebaseanalytics.param.sign_up_method' Is Failing To Save The 'value' Along With 'event Name` In The Console
I'm using this code to analyse the sign_up method user is using: Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.SIGN_UP_METHOD, 'sign_up_method'); mFirebase
Solution 1:
I asked the same question from the Firebase Support Team and they told me that
Unfortunately, not all parameters are represented directly in your Analytics reports. It is only available on a subset of suggested events. But they can be used as filters in Audience definitions for every report. They are also included in data exported to BigQuery if your app is linked to a BigQuery project.
So, either link your app to BigQuery or get satisfied with what Firebase has to provide.
Solution 2:
Please check the Firebase Analytics docs for this. Looks like you are incorrectly setting the parameter as FirebaseAnalytics.Param.SIGN_UP_METHOD
It should be FirebaseAnalytics.Param.METHOD instead
Post a Comment for "'firebaseanalytics.param.sign_up_method' Is Failing To Save The 'value' Along With 'event Name` In The Console"