The Firebase Android SDK for analytics provides a method named setUserId(String id)
, now i enabled firebase logging and every time i called the method setUserId(1234)
i see this in the logs Setting user property (FE): _id, 1234
.
My question is how come the Firebase dashboard does not let us filter by this property, there is no property not for userId and not _id, i even tried to add _id as a property in the dashboard but Firebase does not allow property names to start with an underscore.
Do i really have to stop calling that method and just do setUserProperty("userId", 1234)
or am i missing something...