My app_tracker.xml
UA-XXXX....
verbose
I think that the fact that it is a bug has to be an answer since project member has acknowledged it as a bug and working on a fix https://code.google.com/p/analytics-issues/issues/detail?id=443
do you have this in your manifest:
<meta-data android:name="com.google.android.gms.analytics.globalConfigResource"
android:resource="@xml/global_tracker" />
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);
}