.logEvent() is not logging the event in the FirebaseConsole

616 views Asked by At

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.

1

There are 1 answers

6
Matt On BEST ANSWER

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