Reputation: 1
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