我遇到了一个应该在Tracker对象上调用的方法的问题。
tracker.enableExceptionReporting(true);
错误:
对于类型,未定义方法enableExceptionReporting(boolean) 跟踪器
是否有人确切知道如何解决此问题?
我正在关注Google文档。
https://developers.google.com/analytics/devguides/collection/android/v4/#manifest
进口:
import com.google.android.gms.analytics.GoogleAnalytics;
import com.google.android.gms.analytics.Tracker;
的OnCreate():
@Override
public void onCreate() {
super.onCreate();
InitApplication.context = getApplicationContext();
analytics = GoogleAnalytics.getInstance(this);
analytics.setLocalDispatchPeriod(1800);
tracker = analytics.newTracker("UA-XXXXX-Y"); // Replace with actual tracker/property Id
tracker.enableExceptionReporting(true);
tracker.enableAdvertisingIdCollection(true);
tracker.enableAutoActivityTracking(true);
}