Sign in to Google without a Google+ profile

I'm trying to create an opportunity for Google users to log in with their account and use my Android app. An important aspect is that we do not want our users to be forced to create a Google+ profile for their account. According to the documentation, I can use GoogleApiClient for this. According to this page: https://developers.google.com/+/api/auth-migration#timetable , requesting only a basic user profile, will not offer users to create a Google+ profile. My experience is that he does it.

I use the following code to run my googleApiClient:

mGoogleApiClient = new GoogleApiClient.Builder(this) .addConnectionCallbacks(listener) .addOnConnectionFailedListener(listener) .addApi(Plus.API) .addScope(new Scope(Scopes.PROFILE)) .addScope(new Scope("email")) .build(); 

I would expect the user to be able to log in with a regular account, but they receive a request to create a Google+ profile and cannot log in without it.

Can I use googleApiClient to log in with a regular Google account (without a Google+ profile)? Or should I give up the client and make a Google login in another way?

+7
android google-play-services
source share

No one has answered this question yet.

See similar questions:

twenty
Android SyncAdapter with google account

or similar:

620
How to install Google Play services in a Genymotion virtual machine (without drag and drop support)?
nine
Getting Google Account Token from GoogleApiClient without GET_ACCOUNTS Permission
8
Google login token login with new GoogleSignInOptions
6
Android implements Google plus login error in mConnectionResult.hasResolution ()
3
Sign in to Google+ without google profile +
one
gmail android login integration using oauth without google plus
0
Android - Signing in to Google with OAuth 2.0
0
Can Google Drive Android Drive.API Android combine with other APIs?
0
why Plus.PeopleApi.getCurrentPerson (myGoogleApiClient) returns null
0
GOOGLE_SIGN_IN_API error in release build

All Articles