I have implemented google plus in my application and when I sign in via google plus then my app show all the google account which are sync in my android device. My problem is that when I sign out from google plus and again sign in then my app doesn't ask for choose account(do not show all the google accounts sync in my android device), It only shows for the first time I install the application and my app directly sign in to the account I choose at the first time of login. I am attaching my logout code. I have spent lot of time on this issue but didn't find any solution.
private void signOutFromGplus() {
if (SignInActivity.mGoogleApiClient.isConnected()){
Plus.AccountApi.clearDefaultAccount(SignInActivity.mGoogleApiClient);
SignInActivity.mGoogleApiClient.disconnect();
SignInActivity.mGoogleApiClient.connect();
}
}