Как определить, является ли конкретный аккаунт Google аккаунтом Google Apps?
У меня на телефоне 2 аккаунта.
обычный аккаунт Google и аккаунт Google Apps
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);
}
Он печатает "com.google" как тип для обоих.