Home > Back-end >  What are good analytic tools for Xamarin Forms?
What are good analytic tools for Xamarin Forms?

Time:09-17

I am looking for a way to track the navigation process of my users, as well as the number of clicks/user for each view, average screen time per/day/user, and so on.

I know I can do this programmatically but it doesn't seem like the ideal solution.

Is there any software that covers all of this?

CodePudding user response:

Visual Studio App Center provides multiple useful tools. It offers real-time diagnostic data, tracking of usage patterns, user adoption and a lot more engagement metrics with App Center Analytics. You can even use custom events to get the exact user behaviors you are looking for.

I've been using it for a while and so far i'm satisfied.

CodePudding user response:

AppCenter is the easiest to integrate with, it also allows you to export the data to ApplicationInsights on azure to do more with that data. There are some other options like Google Analytics (You have to install nugets on platform projects and implement them separately). You also have segment If you are interested.

  • Related