Firebase Integrate Google Account Sign-in
useful blogs & videos : IMP : https://firebase.google.com/docs/auth/android/google-signin https://youtu.be/-tCIsI7aZGk ------------------------------------------------------------------------------------------------------- 1] Add the required dependencies first : dependencies { // Import the BoM for the Firebase platform implementation platform( 'com.google.firebase:firebase-bom:26.0.0' ) // Declare the dependency for the Firebase Authentication library // When using the BoM, you don't specify versions in Firebase library dependencies implementation 'com.google.firebase:firebase-auth' // Also declare the dependency for the Google Play services library and specify its version implementation 'com.google.android.gms:play-services-auth:18.1.0' } 2] Add the SHA-1 id into the Firebase App settings . (Get the SHA -1 id from the Gradle Tab at the Top right corner of android studio & paste inside the firebase settings) 3] Fo...