0

有没有人知道乳清不能将事件发送到谷歌分析?

代码:

 GAServiceManager.getInstance().setDispatchPeriod(20);
 GoogleAnalytics mGaInstance;
 Tracker mGaTracker1; 
 mGaInstance = GoogleAnalytics.getInstance(getActivity());
 mGaInstance.setDebug(true);
 mGaTracker1 = mGaInstance.getTracker(Consts.ANALYTICS);    
 mGaTracker1.sendEvent("aa", "bb", "cc", null);
4

1 回答 1

0

虽然我没有使用它来发送自定义事件或数据,但这个 api 文档似乎暗示它是可能的。

参考:https ://developers.google.com/analytics/devguides/collection/android/v2/customdimsmets

请注意,如果您在 logcat 中看到发送,那么它确实已发送,但您最多需要 24 小时才能开始在分析网络报告站点中看到任何内容。

于 2013-02-21T15:13:00.997 回答