为什么我使用EasyTracker发送动作100次,但谷歌分析只显示我发送了20次?

时间:2017-01-20 02:12:02

标签: android google-analytics

为什么当我使用EasyTracker发送动作100次时,Google Analytics才会显示我只发送了20次?

我用来通过easyTracker发送动作的代码如下。日志显示它运行了100次,但背景GA只显示了20次。为什么呢?

Log.d(TAG,"onMultiWindowModeChanged#EasyTracker->name:"+getPackageName()+" ,imei:"+imei);
        // MapBuilder.createEvent().build() returns a Map of event fields and values
        // that are set and sent with the hit.
        easyTracker.send(MapBuilder
            .createEvent("MultiWindow",   // Event category (required)
                         getPackageName(),  // Event action (required)
                         imei,   // Event label
                         null)            // Event value
            .build()
        );

0 个答案:

没有答案