重启后立即开始调试 Android 应用程序

发布于 2024-12-09 18:30:05 字数 198 浏览 0 评论 0原文

喂喂!

我现在正在使用一个使用 BOOT_COMPLETED 接收器的应用程序。

因此,如果我想使用其类中的一些断点来调试该应用程序,我必须重新启动手机并在适当的时间连接到它,但我总是为时已晚。

您是否有更好的解决方案如何在设备重新启动情况下在其生命周期开始时准确调试我的应用程序?

谢谢 !

Helo !

I am working right now with an application that uses BOOT_COMPLETED receiver.

So if I want to debug this application with some breakpoints in its class, I have to reboot my phone and connect to it in the proper time, but I am always too late.

Have you got any better solutions how to debug my application exact when it starts its lifetime with device reboot case ?

Thanks !

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

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

发布评论

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

评论(4

全部不再 2024-12-16 18:30:05

您可以等待调试器 - Debug.waitForDebugger()< /a>

You can wait for a debugger - Debug.waitForDebugger()

一瞬间的火花 2024-12-16 18:30:05

关闭模拟器并直接在调试中运行应用程序,然后选择启动要运行该应用程序的模拟器的选项。

Close your emulator and Run the application directly in Debug and select the option to launch the emulator that you want to run it on.

半仙 2024-12-16 18:30:05

这是一件奇怪的事情,但是,如果您在第一个断点之前放置 20 秒的暂停或循环会怎样?

It's an strange thing, but, what if you put a 20 sec pause or loop before your first break point?

薯片软お妹 2024-12-16 18:30:05

在这种情况下,日志记录是比 debuggung 更好的解决方案。即使在 IDEA logcat 窗口中,我也能够看到 BOOT_COMPLETE 处理产生的日志。 (我也不太重视逐步调试,无论如何更喜欢 TDD 方法)

In this case logging is better solution than debuggung. I was able to see logs arising from BOOT_COMPLETE processing even in IDEA logcat window. (I also do not value step by step debugging very much, and prefer TDD approach anyway)

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