user2260304
user2260304

Reputation: 319

Firebase Analytics key and value limitation to 24 and 36 character

Why do google has limitations in keys and values to 24 and 36 characters? What is the best implementation to overcome it. https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Param

Thanks!

Upvotes: 4

Views: 8228

Answers (2)

Muhammad Noman
Muhammad Noman

Reputation: 2000

Now you can log firebase analytics Event param name up to 40 characters and value up to 100 characters

See documentation here: https://firebase.google.com/docs/reference/cpp/group/parameter-names

Upvotes: 10

djabi
djabi

Reputation: 5767

The main reason for the value size limits is to ensure minimal impact on the device battery, low device storage requirement, low network bandwidth usage and make the data more manageable for the infrastructure and BigQuery.

We might consider increasing the value limits if there is valid reasons to do so. What is the case where you need longer values?

Upvotes: 3

Related Questions