This is how i am changing the email id of current user
FirebaseUser user = mAuth.getCurrentUser();
user.updateEmail(email).addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
}
});
It is working fine
Now i want to change email id of another user(other then the current user) i have the UID of that user
is it possible ?