Google login redirects to google page in standalone app

I need google login for my app. I am using sdk34. I tried expo-google-app-auth , it works fine in development using expo app but after building a standalone app it shows the email popup and after selecting that email it goes to google home page. Any solution about this?

import * as Google from "expo-google-app-auth";

const { type, accessToken,  user } = await Google.logInAsync({
                  behavior: "web",
                  androidStandaloneAppClientId: "androidStandalone ID",
                  androidClientId:"Android Client ID",
                  iosStandaloneAppClientId:"iosStandalone ID",
                  iosClientId:"iosClient ID",
                  scopes: ["profile", "email"]
  });```
Any solution for this ?
2 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.