Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to track an application contains more than 300 events

Tags:

android

flurry

My application contains 450 events. While trying to check a sample application contains 500 events using flurry, the Event summary list displays 300 events only. Is there is any tool to track my application?

like image 619
Shafi Avatar asked Dec 13 '25 15:12

Shafi


1 Answers

Your only real option is to make some common events amalgamating things and destinguishing with parameters. Getting the data out of flurry you will need to download the .csv file for detailed analisis.

As an example I have an event dedicated to reporting various exceptions that I catch. I use the same event but then have a parameter for the class, the message form the exception a custom message form the code. I then fill in parameted with fixed names that get filled with my custom data.

like image 144
Ifor Avatar answered Dec 15 '25 09:12

Ifor