I have a code in my app that prompts user to add Google account if one is missing.
AccountManager accountMgr = AccountManager.get(mContext);
accountMgr.addAccount("com.google", "ah", null, new Bundle(),
(Activity) mContext, null, null);
This works as intended on any "Google-enabled" device, however on NOOKColor code executes with no error or warning however Account Manager never starts since UI for it is probably missing. Can you think of any good alternative? All I need is to obtain AUTH token for the user's Google account to be able to access Google Reader