I'm using the latest SDK version, and the basic code to register and send a page view:

[[GANTracker sharedTracker] startTrackerWithAccountID:@"UA-MY_ACCOUNT_ID-1"
                                           dispatchPeriod:10
                                                 delegate:self];

NSError *error;

if (![[GANTracker sharedTracker] trackPageview:@"/firstpage"
                                     withError:&error]) {
  NSLog(@"tracker failed: %@",error);
}

However the events are not dispatched from the device or simulator. There are no errors as well. When i turn on the debug flag, i can see the following:

dispatch called
dispatching 4 events
[after 10 seconds]
dispatch called
...dispatcher was busy
[after 10 seconds]
dispatch called
...dispatcher was busy

My delegate method never gets called:

- (void)trackerDispatchDidComplete:(GANTracker *)tracker
                  eventsDispatched:(NSUInteger)eventsDispatched
              eventsFailedDispatch:(NSUInteger)eventsFailedDispatch{
    NSLog(@"success: %d failures: %d",eventsDispatched,eventsFailedDispatch);
}
  • I tried to create a new publisher ID but it did not help as well.
  • I do have internet connection from the device and simulator
  • I deleted the app before trying.
  • I played with the dispatch period - setting it to -1 and call the dispatch manually

Nothing helped.... :(

I'm struggling with this for a day now... how can i make it work?

link|improve this question

43% accept rate
eventually i got it to work so here is the solution in case someone else encounter it: the problem was that i had a call to [[GANTracker sharedTracker] dispatch] somewhere in code (while settings the dispatch period to -1). And that part of code was running in a background thread. You must call all GANTracker on the same thread.. and it works. – Amir Naor Aug 26 '11 at 9:06
feedback

2 Answers

I had the same problem with the dispatcher ("...dispatcher was busy") and in my case it was due to I had running my app normally in background and it was using the dispatcher. Then when I tried to connect the device to xcode to run and debug the app, the console showed me that message. So the solution was easy: stop the app in xcode and close the app in background. And that's all!

link|improve this answer
feedback

you can put after calling the GANTracker a manual dispatch like that: [[GANTracker sharedTracker] dispatch]; and it work perfectly

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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