Simple Firebase Sign-in UI Demo App

Simple Jetpack Compose example to demonstrate how to sign in with a Firebase Authentication pre-build UI using FirebaseUI

Vincent Tsen
3 min readJun 10, 2023

This is part of the Firebase tutorial series:

In this demo app, we will guide you through the steps to enable FirebaseUI for authentication and demonstrate how to integrate it into your Jetpack Compose application.

We’re going to add these 2 sign-in methods:

  • Email/Password
  • Google

Connect Your App to Firebase

  1. Go to the Firebase console, and log in with your Google account.
  2. Add project and follow on-screen instructions
  3. Turn off Enable Google Analytics for this project, and click Create project.
  4. Register the app with Android package name ( applicationId in your build.gradle file)

--

--