I can launch my AuthenticatorActivity from my application (activity) through the AccountManager via
final AccountManager am = AccountManager.get(this); am.addAccount(AuthenticatorActivity.ACCOUNT_TYPE, AuthenticatorActivity.AUTHTOKEN_TYPE, null, null, this, null, null); However, when I try to create an account via Accounts and Settings, or the dev tools Account Tester, my AuthenticatorActivity's onCreate() is never entered. My account type appears, in the list of account types, and I can select it for new account creation. >From my debug trace output, I can see that my AuthenticationService's addAccount() method is being invoked in either case, and that the result bundle has a KEY_INTENT with my AuthenticatorActivity specified as the target component. The intent also has the KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, and my auth token type. I am following the SampleSyncAdapter example closely, but am at a loss to explain this behavior. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

