Firebase returns "null" account after successful authentication
Why does Firebase return "null" account after successful Google Play authentication? class MyActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { [...] val activity = this val gso = GoogleSignInOptions .Builder(GoogleSignInOptions.DEFAULT_GAMES_SIGN_IN) .requestServerAuthCode("<some-id>.apps.googleusercontent.com") .build() val signInClient = GoogleSignIn.getClient(activity, gso) val acc…