Well, I want debugger to point out me on the line number which generates error ?
If i get null values at runtime, or my service url path does not exit, it does not point me to specific line.
Is there any best way to debug programs in android rather than just tracing values with log cat ?
I am using eclipse IDE for android development.
If you’re using eclipse, you can use its built-in debugger.
http://developer.android.com/tools/debugging/debugging-projects.html
Set some breakpoints in your code and then follow it until it throws an error.