How to set diplayName of a firebase User while using Phone Authentication
I am creating an android massaging app where I am implementing Firebase Phone Authentication. When I am creating PhoneAuthOptions, I am not seeing any method to set User's displayName, and after the verification completion I need User's name to save it with phone number into Database. While setting up phoneNumber of the User, is there any I can set displayName of the User?
val options=PhoneAuthOptions.newBuilder(mAuth)
.setPhoneNumber(number)...