Google login does not show account picker for devices with single google accounts
I'm trying to implement google plus sign in for an android app. I followed the guide on the google developer page " https://developers.google.com/+/mobile/android/getting-started ". My only problem is that when there's only one google account on the device, the account picker dialog does not show. Is there a way around this? I used an AccountPicker as suggested by @acj. I start an AccountPicker intent Intent intent = AccountPicker.newChooseAccountIntent(null, null, new String[] { "com.google" }, true, null, null, null, null); startActivityForResult(intent, ACCOUNT_PICKER_REQUEST_CODE); and