Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are good conventions for Google Analytics on Android?

I'm about to implement Google Analytics support in an Android app, but after some googling, the documentation seems delightfully sparse. Are there any useful conventions or advice (i.e. when not to trigger pageviews/events, or something) that a newcomer to GA should know?

like image 438
Andrew Toulouse Avatar asked Sep 07 '10 18:09

Andrew Toulouse


1 Answers

I also use events to report exceptions in case users are too lazy to hit the 'Report' button. Also useful for exceptions that you handle internally but want to understand and deal with user error.

An example of the later - I have a numeric EditText (that even has inputType:number) but users still find ways to trigger NumberFormatExceptions that I handle with a default value. When I saw how many times I handled this case, I realized that I needed to better explain how to use that field.

like image 183
Pedantic Avatar answered Oct 11 '22 05:10

Pedantic