feat: add OAuth redirect handling and update Google OAuth integration

This commit is contained in:
2026-03-19 21:19:49 -03:00
parent 34cbd4a861
commit 39f024f98d
5 changed files with 31 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
import * as WebBrowser from 'expo-web-browser';
// Esta tela é o destino do redirect OAuth (meowspool://oauthredirect?code=...).
// maybeCompleteAuthSession() detecta os parâmetros da URL, sinaliza o
// expo-auth-session para fechar o browser e entregar o resultado ao hook
// useAuthRequest em login.tsx.
WebBrowser.maybeCompleteAuthSession();
export default function OAuthRedirect(): null {
return null;
}