Can I get the phone number that was verified by the user in onActivityResult? I need to save the phone number so that I don't have to ask the user for it again
Use FirebaseUser#getPhoneNumber().
@SUPERCILEX is right.
To elaborate, once you have signed in successfully you can do:
FirebaseAuth.getInstance().getCurrentUser().getPhoneNumber()
Most helpful comment
Use
FirebaseUser#getPhoneNumber().