Firebase Authentication with Google Sign in
1. Create a new android project 2. Set up Firebase Authentication for android 3. Check if the user is already logged in -Create instances of FirebaseAuth and FirebaseAuth.AuthStateListener (e.g. mAuth and mAuthStateListener repectively) -Add the mAuthStateListener to the mAuth object inside onStart() -Remove the auth state listener inside onStop() 4. …