Hello,
I'm using the RSS Reader application described here to learn more about how to code Android applications:
http://code.google.com/p/android-rss/
The problem is that I don't know which class is the entry point for the app. To proceed, I executed the app in debug mode using Run->Debug or F11, which I thought would start the debugger, which would then connect to the emulator, but prevent the app from starting. Instead, the app runs as normal.
How do I start the debugger so that the app being debugged is loaded but not started? I noticed that with another simple test app I have written with just one class, I have to manually set the breakpoint to the first line of the onCreate() method to force the debugger to act. With other debuggers I have used (eg, gdb), the debugger intercepts the program before it starts, and positions itself at the program's entry point.
Can anyone help?
Thanks,
Paul


