Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get the user's market account, the account with which they install applications in google market, from code?

share|improve this question
you mean the email id which the device is configured to? – Andro Selva Jan 24 '12 at 11:07
yes, the enail with which the user signs in to android market – Oren Jan 24 '12 at 15:57
Could you get answer to your question? – coding crow May 16 '12 at 18:30

2 Answers

up vote 0 down vote accepted

If you were looking for Configured Email Id of the device, this will help you.

    Account[] accounts = AccountManager.get(ContactUs.this).getAccounts();
    for (Account account : accounts) {
      // TODO: Check possibleEmail against an email regex or treat
      // account.name as an email address only for certain account.type values.
      String possibleEmail = account.name;
     Log.i("Email ID",possibleEmail);

    }
share|improve this answer
2  
This answer does not return the gmail account used to sign-in Android Market rather gives all the accounts set-up on a device.This is not the answer to the question. – coding crow May 16 '12 at 18:30

Yet better you try to get only the google account(s) like this:

Account[] accounts = AccountManager.get(this).getAccountsByType("com.google");
for (Account account : accounts) {
 // this is where the email should be in: 
  String email = account.name;
}
share|improve this answer
I used this approach and for certain users I got null - Is that possible? Also, can this return non gmail accounts if using getAccountsByType("com.google")? I saw that I get some other accounts types... – Oren Jan 24 '12 at 14:19
This answer does not return the gmail account used to sign-in Android Market rather gives all the accounts set-up on a device.This is not the answer to the question. – coding crow May 16 '12 at 18:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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