Android 2.2. I need to debug my signed APK on my Nexus S. How can this be done using Eclipse?
I start the app on my phone and then...?
When device connect to your eclipse running mechine , set debuggable=true in manifest file and enable debug mode in android phone it can view current running log using logcat, otherwise
You can debug your running application using adb tools from the command line
adb logcat - View device log
will display the current logcat (debug messages)
adb logcat [
using you can filter only your given debug messages
for configure debug tool view http://developer.android.com/guide/developing/tools/adb.html