Connect your app to Firebase
- Install the Firebase SDK.
- In the Firebase console, add your app to your Firebase project.
Add Firebase Authentication to your app
Add the dependency for Authentication to your app-level build.gradle file:
implementation 'com.google.firebase:firebase-auth:16.1.0'
To use an authentication provider, you need to enable it in the Firebase console. Go to the Sign-in Method page in the Firebase Authentication section to enable Email/Password sign-in and any other identity providers you want for your app.
Check current auth state
Declare an instance of
FirebaseAuth.Java
Androidprivate FirebaseAuth mAuth;
Kotlin
Androidprivate lateinit var auth: FirebaseAuth
In the
onCreate()method, initialize theFirebaseAuthinstance.Java
Android// Initialize Firebase Auth mAuth = FirebaseAuth.getInstance();
Kotlin
Android// Initialize Firebase Auth auth = FirebaseAuth.getInstance()
When initializing your Activity, check to see if the user is currently signed in.
Java
Android@Override public void onStart() { super.onStart(); // Check if user is signed in (non-null) and update UI accordingly. FirebaseUser currentUser = mAuth.getCurrentUser(); updateUI(currentUser); }Kotlin
Androidpublic override fun onStart() { super.onStart() // Check if user is signed in (non-null) and update UI accordingly. val currentUser = auth.currentUser updateUI(currentUser) }
Sign up new users
Create a new createAccount method that takes in an email address and password,
validates them, and then creates a new user with the
[createUserWithEmailAndPassword](/docs/reference/android/com/google/firebase/auth/FirebaseAuth.html#createUserWithEmailAndPassword(java.lang.String, java.lang.String)
method.
Java
Android
mAuth.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
// Sign in success, update UI with the signed-in user's information
Log.d(TAG, "createUserWithEmail:success");
FirebaseUser user = mAuth.getCurrentUser();
updateUI(user);
} else {
// If sign in fails, display a message to the user.
Log.w(TAG, "createUserWithEmail:failure", task.getException());
Toast.makeText(EmailPasswordActivity.this, "Authentication failed.",
Toast.LENGTH_SHORT).show();
updateUI(null);
}
// ...
}
}); Kotlin
Android
auth.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(this) { task ->
if (task.isSuccessful) {
// Sign in success, update UI with the signed-in user's information
Log.d(TAG, "createUserWithEmail:success")
val user = auth.currentUser
updateUI(user)
} else {
// If sign in fails, display a message to the user.
Log.w(TAG, "createUserWithEmail:failure", task.exception)
Toast.makeText(baseContext, "Authentication failed.",
Toast.LENGTH_SHORT).show()
updateUI(null)
}
// ...
}Add a form to register new users with their email and password and call this new method when it is submitted. You can see an example in our quickstart sample.
Sign in existing users
Create a new signIn method which takes in an email address and password,
validates them, and then signs a user in with the
signInWithEmailAndPassword method.
Java
Android
mAuth.signInWithEmailAndPassword(email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
// Sign in success, update UI with the signed-in user's information
Log.d(TAG, "signInWithEmail:success");
FirebaseUser user = mAuth.getCurrentUser();
updateUI(user);
} else {
// If sign in fails, display a message to the user.
Log.w(TAG, "signInWithEmail:failure", task.getException());
Toast.makeText(EmailPasswordActivity.this, "Authentication failed.",
Toast.LENGTH_SHORT).show();
updateUI(null);
}
// ...
}
}); Kotlin
Android
auth.signInWithEmailAndPassword(email, password)
.addOnCompleteListener(this) { task ->
if (task.isSuccessful) {
// Sign in success, update UI with the signed-in user's information
Log.d(TAG, "signInWithEmail:success")
val user = auth.currentUser
updateUI(user)
} else {
// If sign in fails, display a message to the user.
Log.w(TAG, "signInWithEmail:failure", task.exception)
Toast.makeText(baseContext, "Authentication failed.",
Toast.LENGTH_SHORT).show()
updateUI(null)
}
// ...
}Add a form to sign in users with their email and password and call this new method when it is submitted. You can see an example in our quickstart sample.
Access user information
If a user has signed in successfully you can get their account data at
any point with the getCurrentUser method.
Java
Android
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if (user != null) {
// Name, email address, and profile photo Url
String name = user.getDisplayName();
String email = user.getEmail();
Uri photoUrl = user.getPhotoUrl();
// Check if user's email is verified
boolean emailVerified = user.isEmailVerified();
// The user's ID, unique to the Firebase project. Do NOT use this value to
// authenticate with your backend server, if you have one. Use
// FirebaseUser.getIdToken() instead.
String uid = user.getUid();
} Kotlin
Android
val user = FirebaseAuth.getInstance().currentUser
user?.let {
// Name, email address, and profile photo Url
val name = user.displayName
val email = user.email
val photoUrl = user.photoUrl
// Check if user's email is verified
val emailVerified = user.isEmailVerified
// The user's ID, unique to the Firebase project. Do NOT use this value to
// authenticate with your backend server, if you have one. Use
// FirebaseUser.getToken() instead.
val uid = user.uid
}Optional: Configure ProGuard
When using Firebase Authentication in your app along with ProGuard, add the
following flags to your proguard-rules.pro file to ensure that your app works
correctly:
-keepattributes Signature
-keepattributes *Annotation*
Next Steps
Explore the guides on adding other identity and authentication services:

