My app_tracker.xml
UA-XXXX....
verbose
I had the same problem and i solved it by adding this line myTracker.enableExceptionReporting(true); to the set up method
private void setupGoogleAnalytics() {
MyApp app= (MyApp) getApplication();
Tracker myTracker=app.getTracker(MyApp.TrackerName.APP_TRACKER);
myTracker.enableAutoActivityTracking(true);
myTracker.enableExceptionReporting(true); //add this line
GoogleAnalytics.getInstance(this).enableAutoActivityReports(app);
}