Created
July 2, 2020 07:59
-
-
Save dllewellyn/2b16155cfc1f0eb78ad8a15e25f52755 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private val oneTapClient: SignInClient by lazy { | |
Identity.getSignInClient(this) | |
} | |
lifecycleScope.launch(CoroutineExceptionHandler { _, e -> | |
Log.e( | |
TAG, | |
e.localizedMessage ?: "", | |
e | |
) | |
}) { | |
val result = oneTapClient.suspendBeginSignInRequest(buildSignupRequest()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment