我正在开发一个Android应用程序,我应该在Localytics中记录流程(与谷歌分析相同);这意味着用户在我的应用中如何走过。但我的应用程序中的流量似乎表现得很奇怪,因为某些活动永远无法达到的活动很少。但这一流程正在Localytics中记录下来。我准确地遵循了文档,并且正在记录事件。 我正在每个活动的onResume()方法中编写这3行代码,如文档所述
onResume()
{
super.onResume();
Localytics.openSession();
Localytics.tagScreen("Splash");
Localytics.upload();
}
现在我对这些代码行有几个问题。
1.在每个活动的onResume()方法中编写Localytics.openSession();
是正确的方法还是只应该在Splash活动中调用它?
2.我是否必须在每项活动中编写Localytics.closeSession();
方法,以便Localytics正常工作?
3.我在哪里可以找到有关这些方法的作用和方式的详细信息?因为本网站的API部分(www.localytics.com)没有足够的信息。
My main concern and the priority is to make sure the flow of activities should be logged properly. So if someone has faced the same problem and found a working solution. Please share it here.