Your SHA-1 Certificate Fingerprint
Rocket has generated this value for your app. You will need to paste it into Google Cloud Console in the Create the Android OAuth Client ID step below.Your SHA-1 FingerprintCopy this value exactly. You will paste it in the Create the Android OAuth Client ID step.
Step 1: Google Cloud Console
Create or select your project
- Go to console.cloud.google.com and sign in.
- Click the project selector at the top of the page.
- Select your existing project, or click New Project, give it a name, and click Create.
Set up the OAuth Consent Screen
This is the screen your users see when Google asks for permission to share their account details with your app.
- In the sidebar, go to APIs & Services > OAuth consent screen.
- Select External and click Create.
- Fill in the required fields: App name, User support email, and Developer contact email.
- Click Save and Continue on each screen until you reach the Summary, then click Back to Dashboard.
Leave the app in Testing mode for now. Add your own Google account as a test user so you can sign in during testing.
Create the Android OAuth Client ID
This credential identifies your app to Google during sign-in.
- Go to APIs & Services > Credentials and click + Create Credentials > OAuth client ID.
- Set Application type to Android.
- Fill in the following:
| Field | Value |
|---|---|
| Name | e.g. MyApp Android |
| Package name | Paste the value from your Rocket email |
| SHA-1 certificate fingerprint | Paste the SHA-1 value from the top of this page |
- Click Create, then OK.
Create the Web OAuth Client ID
Supabase requires a separate Web Client ID to handle authentication on your behalf.Replace
- Click + Create Credentials > OAuth client ID again.
- Set Application type to Web application.
- Name it e.g.
MyApp Web (Supabase). - Under Authorised redirect URIs, click + Add URI and enter:
<your-project-ref> with your Supabase project reference. Find it in Supabase under Settings > General.- Click Create.
- A dialog shows your Client ID and Client Secret. Copy and save both. You will need them in the Enable Google sign-in step.
Step 2: Configure Supabase
Enable Google sign-in
- Log in to supabase.com and open your project.
- Go to Authentication > Providers in the sidebar.
- Find Google, click to expand it, and toggle Enable sign in with Google to ON.
- Paste the Web Client ID and Client Secret you saved in the Create the Web OAuth Client ID step.
- Click Save.
Google sign-in is ready
Google Cloud Console and Supabase are configured. Google sign-in will now work in your APK.

