Firebaseui-android: Get the phone number after verification in onActivityResult

Created on 8 Sep 2017  路  2Comments  路  Source: firebase/FirebaseUI-Android

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

Most helpful comment

Use FirebaseUser#getPhoneNumber().

All 2 comments

Use FirebaseUser#getPhoneNumber().

@SUPERCILEX is right.

To elaborate, once you have signed in successfully you can do:

FirebaseAuth.getInstance().getCurrentUser().getPhoneNumber()
Was this page helpful?
0 / 5 - 0 ratings