Raed Ghazal
10/01/2023, 11:00 AMGoogleSignInClient
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
single {
val gso = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(androidContext().getString(R.string.default_web_client_id))
.requestEmail()
.build()
GoogleSignIn.getClient(androidContext(), gso)
}