Android Question Check status from Firebase Google Auth

Waldemar Lima

Well-Known Member
Licensed User
hello everyone !

I am studying about login with google in firebase, and I came across a counter-time, how do I check if the user clicked off the edge of the login window with Gmail and the login was canceled?

screenshot 1 : Screenshot_2.png ' this is whats happens when i click outside the login window with google

screenshot 2 : Screenshot_3.png ' in the area represented by green, is the zone where if I click the login is canceled, I consider whether the user has canceled this login (by any method of cancellation)?
 

Waldemar Lima

Well-Known Member
Licensed User
can i do it ?

B4X:
Sub Activity_Resume
    If auth.CurrentUser.IsInitialized Then
        Log("Logged !")
    Else
        Log("Close Login ...")
    End If
End Sub
 
Upvote 0
Top