I've seen a couple of similar posts on this site, but neither one had any response so I'm going to post my issue.
I'm getting the following warnings from GoogleAnalyticsTracker: Store full. Not storing last event.
I'm using GoogleAnalyticsTracker in my Android app to store analytics. It all executes fine, except for the above warnings, however no data seems to be getting to Google Analytics since every time I check it there's nothing there.
GoogleAnalyticsTracker tracker;
tracker = GoogleAnalyticsTracker.getInstance();
tracker.startNewSession(GA_ID , this);
// i've got a bunch of these throughout my activity
tracker.trackEvent("BTN CLICK", "myactivity", "some info",n);
Can anyone from Google provide some info on this?