// analytics.
if (SystemProperty.environment.value() == SystemProperty.Environment.Value.Production)
{
// The app is running on App Engine...
FocusPoint focusApp = new FocusPoint(basicInfo.PACKAGE_NAME);
FocusPoint focusPoint = new FocusPoint("ErrorReport", focusApp);
FocusPoint focusVer = new FocusPoint(basicInfo.APP_VERSION_NAME, focusPoint);
if (!Utils.isEmpty(appUser.AnalyticsTrackingId))
{
JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker("ACRA Reporter", "0.1", appUser.AnalyticsTrackingId);
tracker.trackSynchronously(focusVer);
}