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");
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SIGN_UP, bundle);
as soon as the user sign up, above given code is supposed to save the event in the Firebase console.
The problem is that the event is getting created but the there's nothing under the value
column, i.e., sign_up_method
is not getting shown.
Here's a snapshot from the console (event name: sign_up
is there but in place of the sign_up_method
, there is a -
):
What's going wrong here?
Please let me know.
I asked the same question from the Firebase Support Team and they told me that
So, either link your app to BigQuery or get satisfied with what Firebase has to provide.