I am experiencing issues when using composeauth. ...
# supabase-kt
f
I am experiencing issues when using composeauth.
supabase.composeAuth.rememberSignInWithGoogle(
onResult = { result -> //optional error handling
when (result) {
is NativeSignInResult.Success -> {}
is NativeSignInResult.ClosedByUser -> {}
is NativeSignInResult.Error -> println(result.message)
is NativeSignInResult.NetworkError -> {}
}
},
)
This always results in NativeSignInResult.ClosedByUser, without user canceling the dialog.
u
in android, right?
f
Created an issue, hopefully someone can look at it. Reproducible project
The issue was misconfiguration, a regenerated sha1 fingerprint.