在 Google Analytics Android 应用程序中,是否存在称为非会话事件的东西?

In Google Analytics Android app, Is there something called non session events?

比如说,应用程序中有一个后台服务,它会在分析时触发事件。 现在我不希望该事件在 Google 分析上创建会话。

有什么办法吗?

这可以通过在您的分析跟踪中使用 .setNonIntraction(true) 来实现。

Tracker t = getGoogleTracker();
t.send(new HitBuilders.EventBuilder().setCategory(category)
.setAction(event)
.setLabel(label).setNonInteraction(true)
.setValue(l)
.build());

这对我来说就像一个魅力!!!