0

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.

Frank van Puffelen
  • 418,229
  • 62
  • 649
  • 645
Hammad Nasir
  • 2,681
  • 6
  • 44
  • 120

1 Answers1

1

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

Matt
  • 1,795
  • 10
  • 29
  • 55