Debugging Simple Android Project
I'm new to Java and more than I'm new to Android. After reading and trying some tutorials I was thinking to make an mp3 player application, but I'm stuck already. I assume that my
Solution 1:
In eclipse try the following steps to debug your code:
1.Put a break point in your code where you think the problem is(the app will pause in device when it reaches that code later you can continue to look code flow by pressing F6)
2.Click ddms->device-> If the device is attached it will show you the list of processes, select your process and click green debug icon at top of device.
3.Run your app, when the code flow reaches break point app will pause a dialog appears in eclipse click yes to continue. Next you can continue debugging in eclipse.
Post a Comment for "Debugging Simple Android Project"