Mobile analytics for android library

I'm working on an android library and wondering which analytics solution would be the best for this purpose. I want to track:

  • unique app installs / uninstalls using my library
  • memory consumption, number of background applications when performing certain operations in my library
  • crashes / exceptions
  • custom events

All of these statistics should be easily grouped by library version, device type, Android version, and custom tags / parameters.

I have used Flurry and NewRelic , which seem to be good tools, but application oriented. Is there anything recommended specifically for mobile sdks / libraries that meet my requirements?

+3


source to share


1 answer


The new relic is for applications only, but you can use the @trace annotation for custom tools of your library methods. This will require developers using your library to also use the new relic.



+5


source







All Articles