java.lang.Object | |
↳ | com.google.android.gms.auth.api.signin.GoogleSignInResult |
GoogleSignInResults are Result
implementations that potentially contain a GoogleSignInAccount
.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Gets a
GoogleSignInAccount if sign-in completed successfully.
| |||||||||||
Gets the status of the sign in attempt.
| |||||||||||
Convenient method to help you tell if sign-in completed successfully.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Gets a GoogleSignInAccount
if sign-in completed successfully.
null
when failed.
Gets the status of the sign in attempt.
Status
object. You can use isSuccess()
to determine quickly if
sign-in succeeded. If sign-in failed, you can match the status code retrieved from
getStatusCode()
to consts defined in GoogleSignInStatusCodes
and its parent class.
Convenient method to help you tell if sign-in completed successfully.