Home > Net >  Get total number of users who are using the android application
Get total number of users who are using the android application

Time:02-10

I launched my android application and wanted to get the count of users who currently using my application. How can I get the count? I am using MONGODB as a backend database part and I don't have any login step in my application.

CodePudding user response:

It is very easy, just integrate your application with firebase. You do not need to add any firebase feature.

  1. Go to firebase https://firebase.google.com/
  2. Add dependencies of firebase by going to your android tab Tools->Firebase or by copy pasting from firebase website
  3. Go to console and create new project
  4. Add android application in firebase project
  5. To add the application, firebase will give you a google_services.json file, just store it in your app module where firebase says.
  6. Go to your firebase, it will show you now the current data, users, installs, uninstalls and everything

If you add firebase crashlytics in your application, you can see all the information's such crashes and bugs.

  •  Tags:  
  • Related