Firebase analytics event parameters are not registered

682 Views Asked by At

I am well acquainted with Firebase Analytics, I created some custom event with parameter "value" and send it this way:

Bundle bundle = new Bundle();
bundle.putString("value", "my_value");
firebaseAnalytics.logEvent("my_event", bundle);

In DebugView I can see it collected. But after I send another event with different value (my_value_2, after 30 seconds during same session) it is collected with no parameter, only event my_event. If I restart the app and send event with my_value_2 value param first, it is shown in DebugView, and then no params for more events again.

I double checked amount of parameters: I have 9 text params so it should be collected.

How can I fix this problem? Is there any limits of parameter values that user send during session?

0

There are 0 best solutions below