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 determine if a specific google account is a Google Apps account?

I have 2 accounts on my phone.

a normal Google acc and a Google Apps account

accountManager = AccountManager.get(getApplicationContext());
Account[] accounts = accountManager.getAccounts();
for ( int i = 0; i < accounts.length; i++ )
{
    Log.d(TAG, accounts[i].name + " - " + accounts[i].type);            
}

It prints "com.google" as type for both.

share|improve this question
Your accept rate if low - you should work on it. – Peter Knego Sep 28 '11 at 18:46

2 Answers

up vote 0 down vote accepted

AFAIK account.name contains email, right?

Google account (aka gmail) email address contains @gmail.com or @googlemail.com. Google Apps account always have custom domains. This way you can distinguish them.

share|improve this answer
ok, just thought there's a nicer way to do this – jakk Sep 28 '11 at 19:47

I was wondering too, but determine based on @gmail.com or @googlemail.com as many suggested isn't accountable. Through some entrances, users can actually register a Google Account using emails other than Gmail. Try this sign-up entrance: https://accounts.google.com/newaccount?hl=en

share|improve this answer

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.