Reputation: 319
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
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
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