I'm trying to use Google analytics in my Android app. So, I've created a new test app in my Google analytics account and linked my app to it.
This is the code I'm using to do so
In my activity
tracker = GoogleAnalyticsTracker.getInstance();
tracker.startNewSession("UA-xxxx-yy", 1, this);
In the fragment (or page)
((TestActivity)getActivity()).tracker.trackPageView("/blah");// + data.name);
((TestActivity)getActivity()).tracker.trackEvent("stam", "succeed", "yes", 2);
((TestActivity)getActivity()).tracker.dispatch();
But for some reason I see nothing on my account. Where am I going wrong here?

