我需要在特定时间开始和停止会话。
在官方文档中,我发现我只能开始一个新会话:
// Called after a user successfully signs in to your app.
private void onSignIn() {
... // The rest of your onSignIn() code.
myTracker.setStartSession(true); // Where myTracker is an instance of Tracker.
myTracker.sendEvent("app_flow", "sign_in", "", null); // First activity of new session.
}
但我在 API 中没有方法来停止会话或更改会话超时。
我已经尝试设置ga_sessionTimeout
为 1 天,但没有成功,
大约 8 分钟后会话关闭,即使活动仍在屏幕上。我在 Google Analytics(分析)仪表板的实时概览中看到了它。
其他想法将不胜感激。