In your sign-in activity's onCreate method, configure Google Sign-In to request the user data required by your app.
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestEmail()
.build();
create a GoogleApiClient object wi...