Replies: 2 comments
-
It seems someone else had an issue with this as well The call waits here response.await().getOrThrow() and there is nothing I can do Android side to force it to complete. |
Beta Was this translation helpful? Give feedback.
0 replies
-
PR posted |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Inside PhoneAuthProvider There doesn't seem to be a way to get verificationID
Here is the android version
actual class PhoneAuthProvider(val android: com.google.firebase.auth.PhoneAuthProvider) {
}
The verificationID is only available in
override fun onCodeSent(verificationId: String, forceResending: PhoneAuthProvider.ForceResendingToken)
and
override fun onCodeAutoRetrievalTimeOut(verificationId: String)
If I wait for the timeout to happen I can log in with the Phone but I can't seem to make the first call complete because it is sitting here at this line
response.await().getOrThrow()
Any help would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions