从 JDB 调试 Android 应用程序(在 Emacs 内)
好的,所以我一直在尝试从 jdb 调试 Android 应用程序。
我运行模拟器,安装应用程序,运行 ddms,然后启动应用程序,然后在 DDMS 中选择它。现在我使用以下命令运行 jdb
jdb -attach localhost:8700 -sourcepath /project-root/src
jdb 能够附加到进程,然后使用以下命令
<块引用>停止在 com.android.helloworld.onClick
效果很好。
但是,当我在 Emacs 中使用 Cx 空间时,它会运行带有行号的命令,
<块引用>停在 com.android.helloworld:22
,我得到这个输出
无法设置断点 com.android.helloworld:22 :第 22 行没有代码 com.android.helloworld
我已检查行号是否正确,并尝试传递文件名本身,但无济于事。有什么想法吗?
Ok, so I've been trying to debug Android apps from jdb.
I run the emulator, install the app, run ddms and then I launch the app and then select it in DDMS. Now I run jdb with the following command
jdb -attach localhost:8700 -sourcepath /project-root/src
jdb is able to attach to the process, and then a command such as
stop in com.android.helloworld.onClick
works well.
However, when I use C-x space in Emacs, it runs a command with the line number,
stop at com.android.helloworld:22
and I get this output
Unable to set breakpoint com.android.helloworld:22 : No code at line 22 in
com.android.helloworld
I have checked that the line number is correct, and tried to pass the filename itself, to no avail. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android SDK 附带一个
android.el
,其中包含“android-jdb
”命令。这将为您正确设置键绑定。 (至少,我认为会的,上次使用它时我没有尝试这些键绑定。)作为奖励,如果您从 bzr trunk 尝试 CEDET,它包括 android 支持。在基本的 CEDET 设置之后(有关 android 详细信息,请参阅 cedet.info),它可以方便地快速启动调试器并使用调试器连接到您的设备。它还支持一些其他有趣的东西。
The Android SDK comes with an
android.el
that has the 'android-jdb
' command in it. That will set up the keybindings correctly for you. (At least, I presume it will, I didn't try those keybindings last time I was using it.)As a bonus, if you try out CEDET from the bzr trunk, it includes android support. After basic CEDET setup (see cedet.info for android details) it has a convenience for quickly starting up the debugger and attaching to your device with the debugger. It supports some other fun stuff too.