Android: What does this google analytics dispatcher warning mean?

android, google-analytics

Solution

I had the same issue. In my particular case it was because I had some spaces in the event "label" that is a String.

Be sure that all the Strings you are passing to the GoogleAnalytics library are encoded correctly to be a part of the URL that is called to deliver the event/pageview to google.

I was quite surprise the library didn't manage this use case.

Problem

Im using google analytics to track the user in my android application, but in my log i keep getting warnings like: ``` 10-22 14:44:08.879: WARN/googleanalytics(1266): Dispatcher thinks it finished, but there were 56 failed events ``` Anyone knows what the problem can be? Im using a correct account key? Has somebody solved the problem with this appearing if there are no whitespaces?

Original source