The first display in the Analytics Dashboard on Firebase shows total active users.
My understanding is that this is showing the amount of users who use the app within a given period. However, some of these users may have since uninstalled the app. Is there a separate number which shows the number of total installs? I simply need to know the number of users who have my app actively installed at any given time.
Active installs of the app, not necessarily the number of authenticated users.
Looking through the firebase API, this webpage will be you're best bet
https://firebase.google.com/docs/auth/admin/manage-users
Scrolling down it has a section labled "List all users" not for sure what language you're using but in Node.js it is
The above will make sure you have a list off all authenticated users. Simply combine that with
And remove the userID and decrement the active users by 1 to have a general sense of installed apps.
hopefully this works better.