Hello Khaleel,
Actually, in the latest version of the library, the parameters are different from the one used in previous versions of the lib.
My fault, I forgot to update the changes in the event description of the first thread.
The code you are testing was originally working with the previous versions of the lib?
in this case your app should raise the error when you upgraded the library to 1.9
you should make sure that the parameters are as the ones you can see below.
'-------------------------------
Sub authphone_oncodesent(success As Boolean, verificationid As String, token As String)
'--------------------------------
If success = True And gb_phoneVerificationSuccess = False Then
gs_verificationID = verificationid
Activity.RemoveAllViews
Activity.LoadLayout("phonelogin")
fet_phonenumber.text = gs_phoneNumber
End If
Log("authphone_oncodesent success" & success)
End Sub