Skip to content

Instantly share code, notes, and snippets.

@e-lin
Created June 26, 2019 10:23
Show Gist options
  • Save e-lin/d8a15acb613b749f39c9df73987cfa21 to your computer and use it in GitHub Desktop.
Save e-lin/d8a15acb613b749f39c9df73987cfa21 to your computer and use it in GitHub Desktop.
App login with FirebaseUI - launch UI flow
findViewById<Button>(R.id.btn_sign_in).setOnClickListener {
startActivityForResult(
AuthUI.getInstance()
.createSignInIntentBuilder()
.setAvailableProviders(listOf(AuthUI.IdpConfig.GoogleBuilder().build()))
.build(),
RC_SIGN_IN
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment