I'm following this tutorial trying to log a SIGN_UP
event when user sign up in my app.
Here's how I'm doing it:
Bundle bundle = new Bundle();
bundle.putString(FirebaseAnalytics.Param.SIGN_UP_METHOD, "facebook");
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SIGN_UP, bundle);
but nothing with the event name sign_up
is getting shown in the Firebase Console.
Why is this happening?
P.S.: I haven't done the Confirm Events
part as given at the bottom in the link I have provided above.
If I'm not mistaken, the Firebase Console (Analytics) aren't updated in realtime. You should wait (max 24 hours) before the data in the console is updated