Hey, I’m trying to provide `GoogleSignInClient` fr...
# multiplatform
r
Hey, I’m trying to provide
GoogleSignInClient
from my shared->androidMain directory using koin, but the
default_web_client_id
is not recognized, so how to setup firebase auth for kmm? I’m fine with having 2 implementation one for android and one for iOS but even this is not working
Copy code
single {
  val gso = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
    .requestIdToken(androidContext().getString(R.string.default_web_client_id))
    .requestEmail()
    .build()


  GoogleSignIn.getClient(androidContext(), gso)
}