login with google

This commit is contained in:
2025-09-05 16:52:31 +02:00
parent 3261ffd2eb
commit 17391daa76
7 changed files with 566 additions and 344 deletions
+18
View File
@@ -1,3 +1,21 @@
export const STRIPE_PUBLISHABLE_KEY_TEST = "..";
export const STRIPE_PUBLISHABLE_KEY_LIVE = "...";
export const GOOGLE_API_KEY = "...";
// OAuth Client IDs for Google Sign-In
// Use platform-specific client IDs from your Google Cloud Console / Firebase settings
// - Android: client_type 1 from config/google-services.json (package + SHA-1 bound)
// - iOS: CLIENT_ID from config/GoogleService-Info.plist
// - Web/Expo Go: Web client (client_type 3)
// Web client ID (client_type 3)
export const GOOGLE_WEB_CLIENT_ID =
"305598753437-dtjknrpfrjt3bdd7838nga41m5i4emva.apps.googleusercontent.com";
// iOS client ID (may need updating to match the iOS bundle for this project)
export const GOOGLE_IOS_CLIENT_ID =
"943006074419-h43c7p48nhn5f4td4oimv4dq7b1p3s29.apps.googleusercontent.com";
// Android client ID (client_type 1 from google-services.json)
export const GOOGLE_ANDROID_CLIENT_ID =
"305598753437-qck73beo37mi04qlautgafbpdl3ccaoh.apps.googleusercontent.com";