When do Firebase Analytics count a user as active?

Viewed 156

I have an app where users need to sign-up in order to use it. The signup process can take up to a minute or so and eventually, it could fail, so the user doesn’t actually use the app.

My question is, how can I make Firebase count a user active, only after he/she has verified his/her account, so I can have proper retention analytics?

1 Answers

you can have a login page that when accessed triggers your analytics to report that a user has accessed the page in question, this way, you are able to track both app instances and logged-in users.

You can find the list of events and parameters here:

Related