Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I installed the Google Analytics SDK in my app.

I want to be able to have real time analytics (new feature proposed by Google).

My code:

tracker = GoogleAnalyticsTracker.getInstance();
// the tracker is started with a dispatch interval of 20 seconds.
tracker.startNewSession("UA-XXXXX", 20, theContext);
tracker.trackEvent("Init", theContext.getPackageName(),"NoLabel", 0);
tracker.dispatch();

I can follow the "Init" event but the real time stats (giving for example the actual number of users using my app) doesn't work, even if I took can to init my tracker with a dispatch time, and not like this:

tracker.startNewSession("UA-XXXX", theContext);

Do you know how to solve this issue ?

Thanks !!

share|improve this question
Is the data ultimately appearing in your reports? – yahelc Dec 9 '11 at 21:12

1 Answer

up vote 7 down vote accepted

You should use trackPageView if you want it to work with real time Google Analytics. They haven't yet enabled this for events, only for page views, unfortunately.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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