In Firebase SMS Authentication for Android, I'm trying to debug the stage in which the user has to type in the Verification Code he received via SMS.
However, due to the Instant Verification, I cannot recreate this scenario on my phone anymore because the onCodeSent()
event is never called again. The onVerificationCompleted()
is called instead - which is GOOD for production, but it leaves me no option to debug my SMS Code Verification screen.
Unfortunately, at the moment there is no way to disable Instant Verification (waiting for @samtstern's response)...
How can I recreate that scenario again? at least for debugging?
This answer didn't help because we can't get the ForceResendingToken
without triggering the onCodeSent(..)
, and as I said, I can't get it triggered...