Android Firebase linking multiple account providers with matching email
问题 In my firebase dashboard I have set multiple accounts for one email option. I have simple email, Facebook and Google Plus authentication in my application. I handle each of them like this in my LoginActivity: Google Plus: private void firebaseAuthWithGoogle(GoogleSignInAccount acct) { AuthCredential credential = GoogleAuthProvider.getCredential(acct.getIdToken(), null); mAuth.signInWithCredential(credential) .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() { @Override public