Android with jdb confusion using waitForDebugger
问题 I'd like to debug my Android application on my device (Nexus One - not the emulator) using the command line. I'm confused at how to set a breakpoint using jdb in combination with android.os.Debug.waitForDebugger . Say I put the following code in my main activity onCreate : public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); android.os.Debug.waitForDebugger(); int j = 10; int r = j; } Using ddms I can see that my application is