Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在启动后调试服务。我遇到的问题是调用后看不到调试器
android.os.Debug.waitForDebugger();
如果我通过调试器打开应用程序一切正常,所以我需要服务在启动后开始运行,然后附加调试器。
谢谢,
西蒙
waitForDebugger冻结您的应用程序并等待调试器连接。您应该打开 IDE 找到您的进程并使用调试器连接到它(如果需要,您还应该在连接之前设置断点)。调试器不会自行连接。谷歌'android.os.Debug.waitForDebugger()'
waitForDebugger