-
-
Save Superbil/5036468 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use jdb to debug Android application | |
# Run ddms and select application to forward port. | |
ddms | |
# Execute jdb and attach to the listening application | |
# ddms show 8600 / 8700 | |
jdb -attach localhost:8600 | |
# Or in windows, need to specify connector explicitly | |
jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=8600 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment