QuickWrap
Authentication > Google
If you don't want to use Google Login in your app, check here to learn how to remove it.
Ensure the "Google" sign-in provider is enabled on the Firebase Console.
1. Before triggering a sign-in request, you must initialize the Google SDK using your any required scopes and the webClientId, which can be found in the android/app/google-services.json file as the client/oauth_client/client_id property (the id ends with .apps.googleusercontent.com)
src/config/firebase/google-services.json
* Make sure to pick the client_id with client_type: 3
2. Copy the client_id and paste it to.envfile
.env
3. Copy theCLIENT_IDfromsrc/config/firebase/GoogleService-Info.plistand paste it to.envfile.
.env
That's it you are good to go.
Remove Google Signin
1. Open your terminal and run the following command
terminal
2. Remove the Following lines in App.tsx
App.tsx
3. Remove the Following lines in .env
.env
4. Remove the Following line in app.json
app.json
5. Delete the Following files
6. Remove the Following line in src/screens/Login.tsx
src/screens/Login.tsx
7. Finally, open your terminal and run the following command.
terminal
8. Now, restart the application.