GoogleAuthClient signIn() Returns Null IntentSender in Firebase Authentication
I'm implementing Google Sign-In with Firebase Authentication using One Tap sign-in in my Android app. However, when calling signIn() in my custom GoogleAuthClient, the IntentSender is returning null.
class GoogleAuthClient(
private val context: Context,
private val oneTapClient: SignInClient
) {
private val auth = Firebase.auth
suspend fun signIn(): IntentSender? {
val result = try {
oneTapClient.beginSignIn(buildSignInRequest()).await()
} catch...