Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!

like image 796
user2260304 Avatar asked Feb 07 '23 13:02

user2260304


2 Answers

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

like image 180
Muhammad Noman Avatar answered Feb 13 '23 07:02

Muhammad Noman


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?

like image 36
djabi Avatar answered Feb 13 '23 06:02

djabi