Android: What does this google analytics dispatcher warning mean?
Im using googl开发者_高级运维e 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?
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.
i found a reference to people using the iphone lib. 'just delete the app, it will delete the cache'. in our case it means you can delete the google_analytics.db
in your databases directory. worked for me...
精彩评论