Android: how to debug app's start-up process

2020-07-06 06:25发布

I am investigating some issues which happen during my app's startup process, but DDMS won't start the debug mode until the process has started, is there a way I can capture the events earlier?

3条回答
相关推荐>>
2楼-- · 2020-07-06 06:37

For Android Studio, here is what worked for me:

  1. Add

android.os.Debug.waitForDebugger();

Where you want to start debugging.

  1. Then add a breakpoint just after it in your code
  2. Compile your app and pass it to your device
  3. Restart your device
  4. Once it's up, attach the debugger:enter image description here

  5. Start debugging

查看更多
做个烂人
3楼-- · 2020-07-06 06:49

You should implement your own Application class which extends Application and override the methods onCreate and so.. . This class will be your starting point of your app.

also set it as your application in the manifest.

查看更多
家丑人穷心不美
4楼-- · 2020-07-06 07:02

I know that this is a couple of years late, but for any future searches:

Putting WaitForDebugger into your code is one way.

Unlocking developer options (by tapping on the build number in system information on the android device) in Settings allows us to select an application for debugging and then opt to wait for a debugger whenever the program is launched. This allows us do the equivalent of adding and removing WaitForDebugger without modifying and reinstalling the code each time.

查看更多
登录 后发表回答