I'm using Eclipse to learn how the SampleSyncAdapter example works. I can't get my breakpoints to work. I set a breakpoint in multiple locations but none get hit. For example, AuthenticatorActivity.onCreate() never get's called. Anyone know why?

Thanks.

link|improve this question

40% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The SyncAdapter thread of execution occurs in a spawned background process, not in the process of your application itself, which is what you have your java debugger attached to.

Simple and ugly way: log() is your friend.

Better way: Start by looking at Debugging a service and find if that needs to be adapted for this case.

link|improve this answer
Thanks. I suspected it had something to do with which process but had no actual info to back that hypothesis. I'm unfamiliar with debuggers that care about which process when it comes to a breakpoint. I really dislike the log() in Android. I'm used to a much more sophisticated logging that allows a programmer much greater control, including the ability to selectively remove the logging code in release builds. Thanks, I'll look at the link. – Mitch Dec 20 '11 at 20:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.