Reputation: 15402
I wonder what is the maximum number of event names that can be recorded in Firebase Analytics when calling the following:
mFirebaseAnalytics.logEvent("eventName1", params);
mFirebaseAnalytics.logEvent("eventName2", params);
mFirebaseAnalytics.logEvent("eventameX", params);
Thanks.
Upvotes: 1
Views: 3886
Reputation: 3800
You can report up to 500 different types of Events per app and you can associate up to 25 unique parameters with each Event type.
If you already reached the limit, then the extra events will be dropped. A firebase_error event is logged with a firebase_error parameter which indicates the error code.
See the following documentations for more information:
Upvotes: 4