in the capacitor.config.json
"GoogleAuth": {
"scopes": ["profile","email"],
"serverClientId": "KEY.apps.googleusercontent.com"
}
in index.html
<meta name="google-signin-client_id" content="KEY.apps.googleusercontent.com">
in android folder string.xml file
<string name="server_client_id">KEY.apps.googleusercontent.com</string>
and in our page .ts file to get detail of google user detail
const user = await GoogleAuth.signIn();
and I have an error in android something went wrong.
anyone has any idea how to solve this situation