Dr.Al
Dr.Al

Reputation: 1

Why not show firebase events on console in Android?

In my application, I want to show some events in Firebase console.
I want when the user clicks on some buttons, there should be events shown in firebase console.

introPage_welcome.setOnClickListener(v -> {
    Toast.makeText(this, "Show", Toast.LENGTH_SHORT).show();
    Bundle bundle = new Bundle();
    bundle.putString("Login", "IntroLogin");
    mFirebaseAnalytics.logEvent("AndroidEvents", bundle);
});

But I can't see this event in firebase console!
Where can I see this event in firebase console?
Is my above code correct and how can I use events in the Firebase console?

Upvotes: 0

Views: 171

Answers (1)

ked
ked

Reputation: 2456

Firebase events logged takes around a day to be reflected on firebase dashboard, check the link, mean while you can debug event and check in realtime for debug device for the events you are logging check the link

Upvotes: 1

Related Questions