I have a game and I want to send event every time user sets new high score, I check if current score is > that previous and if it is I send that new high score to firebase. code:
Bundle bundle = new Bundle();
bundle.putLong(FirebaseAnalytics.Param.LEVEL, extras.getInt("score"));
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.LEVEL_UP, bundle);
This is how it looks like in firebase console: image link
You can see how events are grouped by their value.
Problem is that i have 4 different modes and I want to capture high scores for each, so this is how I tried that:
Bundle bundle = new Bundle();
bundle.putLong(FirebaseAnalytics.Param.LEVEL, extras.getInt("score"));
mFirebaseAnalytics.logEvent("mode4level", bundle);
And this is what I get in firebase console: image link
Grouped events by value are missing, I have only Event Location, Event demographics, Events per session.
How can I fix that, key part of analytics is missing ? Thank you.