skip to Main Content

I have applications deployed on Play Store, and I want to track users’ interactions with the applications so I can make the application more user-friendly

things I need to keep track of:

  • screen time: How much time a user spends on each screen.
  • clicks: the user clicks.
  • must-clicked product: I need to see the must-click products so I can make users easy to reach them

all this without relying on third-party dashboards, cuz I have the backend, I only need a way or package (to make it easier) to collect user’s data and send it to my back end.

I search all the available packages but I found the same problem. I need to go to their dashboard if I want to take a look at the collected data

2

Answers


  1. You could use Google Analytics for Firebase, then export the data to your own backend if you’d rather not use the Firebase console’s UI for reporting.

    Login or Signup to reply.
  2. How can I track user interaction inside my application without relying on third-party dashboards?

    If you’re using Firebase, please note that Google Analytics is a Firebase product and not a third-party service. You can either use the Firebase Console to track user interaction or as @GregFenton recommended, you can export the data and do whatever you want with it.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search