I am trying to integrate Google Analytics in my Activities. As per the official documentation i used the "Easy Tracker" Library provided by Google and extended my activities from "TrackedActivity" The exact syntax i use is:

EasyTracker.getTracker().trackPageView("/myview"+viewname);

I am getting Null Pointer Exception randomly but Logcat shows "at Google Analytics" and surprisingly not at any place in my code. In some of my activities, I am calling system.gc() function in the onDestroy() method. (Could be the issue) Its supposed to be a singleton object I am worried if its getting garbage collected?

Needless to say as of now my app crashes. What worries me further is that even if i do a try catch or put exception checkers ie. check across null object. I am still worried that my activities might not get tracked even if the Crash is avoided.

Please Suggest.

link|improve this question

75% accept rate
Maybe you should take a look at this bug. code.google.com/p/analytics-issues/issues/… You're possibly experiencing it. I think there's a good chance it's being erroneously affected by the GC. So you could add that info here. – Eduardo Cereto Feb 21 at 0:26
system.gc() is called from 3/10 activities. And it sometimes crashes without even going in those activities. – nimish Feb 21 at 3:30
feedback

1 Answer

up vote 1 down vote accepted

Make sure that you don't invoke methods of EasyTracker before onStart() of your Activity. Also set ga_debug and ga_auto_activity_tracking to "true" to get debug statements and to track all activities of the application respectively.

link|improve this answer
ga_auto_activity_tracking is used to enable app tracking. I am more interested in tracking individual pages. So i am using trackPageView API provided in the library – nimish Feb 21 at 9:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.