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 - ):

What is wrong here?
Please let me know.
source share