I can send reset email as follow :
submit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FirebaseAuth auth = FirebaseAuth.getInstance();
String emailAddress = email.getText().toString();
auth.sendPasswordResetEmail(emailAddress)
.addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if (task.isSuccessful()) {
Log.d(TAG, "Email sent.");
}
}
});
}
});
But after I open the received email, I just found this message with out any action :
Try resetting your password again Your request to reset your password has expired or the link has already been used
How I can reset Password Completely?