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.