How to make Firebase authentication work completely without Identity Toolkit API
问题 I'm trying to create email password account using Firebase in Android project. I have added Firebase using the Android Studio's Firebase Assistant. The create user code is as follows. mAuth.createUserWithEmailAndPassword(email, password) .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() { @Override public void onComplete(@NonNull Task<AuthResult> task) { if (task.isSuccessful()) { FirebaseUser user = mAuth.getCurrentUser(); onLoginUpdateUI(user); } else { System.err.println(