toto_tata
toto_tata

Reputation: 15402

Firebase analytics: maximum number of event names?

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

Answers (1)

looptheloop88
looptheloop88

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

Related Questions