Skip to content

Instantly share code, notes, and snippets.

@AndroidPoet
Last active May 5, 2026 02:34
Show Gist options
  • Select an option

  • Save AndroidPoet/947b8bb7eed5c47e0ee782a6f5845a87 to your computer and use it in GitHub Desktop.

Select an option

Save AndroidPoet/947b8bb7eed5c47e0ee782a6f5845a87 to your computer and use it in GitHub Desktop.
supabase.auth.signInWithEmail(
email = "user@example.com",
password = "password"
).onSuccess { session ->
sessionManager.saveSession(session)
}.onFailure { error ->
println("Login failed: ${error.message}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment