查明设备是否在没有 BOOT_COMPLETED 的情况下重新启动/崩溃

发布于 2024-12-22 22:13:24 字数 116 浏览 0 评论 0原文

我需要知道设备是否已崩溃或重新启动,并且希望避免使用 BOOT_COMPLETED 权限。

这可能吗?我正在考虑读出正常运行时间并进行比较(我如何读出它?)或者有更好的方法吗?

I need to know if the device has crashed or rebooted and would like to avoid using a BOOT_COMPLETED permission.

Is that possible? I was thinking of reading out the uptime and compare it (how do I read it out?) Or is there a better way of doing this?

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

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

发布评论

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

评论(1

∞梦里开花 2024-12-29 22:13:24

仅当他们比上次“更早”启动应用程序时(正如您所知),读取正常运行时间才会对您有所帮助。您可以使用 SystemClock.elapsedRealtime() 如果你无论如何都想走这条路。

另一种解决方案(尽管未经测试)是:

/proc/sys/kernel/random/boot_id

此文件将包含一个每次重新启动时都会不同的 uuid。

Reading the uptime will only help you when they have started the app "earlier" than last time (as you already know). You can read the uptime using SystemClock.elapsedRealtime() if you want to go down that path anyway.

An alternative solution, although untested, is to read:

/proc/sys/kernel/random/boot_id

This file will contain a uuid that will be different on every restart.

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