I don't know what to do, App was working well and performing sms verification few hours ago, I just came back but the same didn't work. Now it's not even sending the sms because resend token is null,
@Override
public void onCodeSent(String verificationId, PhoneAuthProvider.ForceResendingToken token) {
Utility.log("onCodeSent: " + verificationId);
Utility.log("token: " + token);
pbVerify.setVisibility(View.GONE);
mVerificationId = verificationId;
mResendToken = token;
}
This method is not calling since because mResendToken is null, I have checked permission those are ok. It was working perfect 8 hours ago.