Open
Description
- Users sign in as anonymous
mAuth.signInAnonymously()
- At certain point, sets email/pw
AuthCredential credential = EmailAuthProvider.getCredential(email, password); mAuth.getCurrentUser().linkWithCredential(credential)
- Most of them are OK. But the email field become empty for some users' account.
When this problem occurs, the user is not an anonymous nor non-anonymous.
The following is how these users looks like in the firebase console.
And the following is how an ordinary anonymous user looks like.
This only happens on Android. Not on iOS.
And the most important part is that I CAN'T REPRODUCE THIS BUG.
I've become aware of this bug through some crash logs.
Any help would be appreciated.