i hope you can help me. I use the Firebase Unity SDK 1.1.1 and Unity 5.5.0f3. I use Firebase-Analytics in my game to track different stuff. LogEvents without custom parameters get tracked well but if I try to add custom parameters i can't see the parameters in the Firebase Console.
For Example:
The following function get called every time the player open a Level and i can see this Event in the Console.
Level_Played is the name of the Event
Level is parameter name.
currentLevel is an integer value for the Level
Firebase.Analytics.FirebaseAnalytics.LogEvent("Level_Played","Level", currentLevel);
If i try to create an audience to Filter this Event i can select Level_Played as an Event but can't select the parameter name Level. The list is just empty.
Hope you can help me