我尝试使用电子邮件和密码登录firebase,但我无法使其正常运行。我收到此错误: 电子邮件地址格式错误。
还有其他人遇到过这个错误吗?
电子邮件:foofoo@gmail.com 密码:fofo1234
我使用此代码登录
private void signIn(final String email, final String password) {
mAuth.signInWithEmailAndPassword("foofoo@gmail.com", "fofo1234").addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (!task.isSuccessful()) {
Log.w(TAG, "signInWithEmail", task.getException());
Toast.makeText(LoginActivity.this, "Authentication failed.",
Toast.LENGTH_SHORT).show();
}
}
});
}