什么时候是结束 Flurry 会话的合适时间?

发布于 2024-11-17 08:31:03 字数 312 浏览 2 评论 0原文

我只有一个包含一些活动的普通应用程序,我希望 Flurry 记录信息以及崩溃。什么时候是结束会议的最佳时间?我应该在 onPauseonStoponDestroy 中执行此操作吗?在所有这些中还是没有?

根据文档,退出应用程序时始终会调用 onPauseonStop ,除非应用程序崩溃或被用户使用任务杀手破坏。但是,如果我确实将结束会话放入 onDestroy 中,则很少会调用它。

有人有这方面的经验吗?

I just have a normal app with a few activities, and I want Flurry to log information as well as crashes. When would be the best time to end the session? Should I do it in onPause, onStop, or onDestroy? In all of them or none?

According to the documentation, onPause and onStop are always called when exiting an app unless the app crashes or is destroyed by the user using a task killer. However, if I do put the end session in onDestroy, it will rarely be called.

Does anyone have any experience with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我还不会笑 2024-11-24 08:31:03

扩展应用程序类并将其放入其中:

public class MyApplication extends Application {

@Override
public void onTerminate() {     
    super.onTerminate();

    FlurryAgent.onEndSession(this);
}

@Override
public void onCreate() {        
    super.onCreate();

    FlurryAgent.onStartSession(this, "123456789abcdefghi");

        // assign your global error handler here as well.


}

}

Extend the application class and put it in there:

public class MyApplication extends Application {

@Override
public void onTerminate() {     
    super.onTerminate();

    FlurryAgent.onEndSession(this);
}

@Override
public void onCreate() {        
    super.onCreate();

    FlurryAgent.onStartSession(this, "123456789abcdefghi");

        // assign your global error handler here as well.


}

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文