Reputation: 2051
I have an application that for which I just released an update and want to monitor the number of users who have upgraded to the latest version of my application. Only if a percentage of users have upgraded to the latest version, I would want to push the corresponding changes in my server. How can I monitor this? I have the basic firebase setup for my application which does give me information about the number of users of the latest three versions. This is also not very useful because this usage is basically monitored based on the versionName
and not the versionCode
. What if I want is information based on the versionCode
?
Upvotes: 0
Views: 896
Reputation: 484
Sign in to your Google Play Developer Console - choose your application you want to check and click Statistics in the left menu, then choose current installs by user and filter by app version. it will look like -this-
Upvotes: 2