We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e38e0ec commit cd089cdCopy full SHA for cd089cd
auth/src/main/java/com/firebase/ui/auth/AuthUI.java
@@ -996,7 +996,8 @@ public GoogleBuilder() {
996
@NonNull
997
public GoogleBuilder setScopes(@NonNull List<String> scopes) {
998
GoogleSignInOptions.Builder builder =
999
- new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN);
+ new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
1000
+ .requestEmail();
1001
for (String scope : scopes) {
1002
builder.requestScopes(new Scope(scope));
1003
}
0 commit comments