-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ .env.template Change] change is required due to clientId is not supported on Android and is interpreted as serverClientId #212
Comments
Can you please assign this issue to me? |
hey @mdmohsin7 I can work on this, can it be assigned to me? |
@mdmohsin7 |
hey @mdmohsin7 can i work on this issue as it has been not assigned in a long time |
@mdmohsin7 |
Assigning @abhinavs1920 as he opened the issue |
🐛 Describe the bug
.env.template
Change:clientId
Not Supported on AndroidDescription
The application generates a warning message during Google Sign-In implementation on Android because
clientId
is being used instead ofserverClientId
. This issue needs to be addressed by updating the.env.template
configuration to use the correct parameter name.Current Warning Message
W/google_sign_in( 4272): clientId is not supported on Android and is interpreted as serverClientId. Use serverClientId instead to suppress this warning.
Current Implementation
In the current
.env.template
:GOOGLE_SIGNIN_ANDROID_CLIENT_ID=
Required Change
The environment variable should be updated to:
SERVER_CLIENT_ID=
Impact
clientId
is being interpreted asserverClientId
), it's not following best practices.Steps to Reproduce
.env.template
.Proposed Solution
.env.template
to useSERVER_CLIENT_ID
instead ofGOOGLE_SIGNIN_ANDROID_CLIENT_ID
.The text was updated successfully, but these errors were encountered: