From 96734e4f60d4cff85dfbda1ffe54e6095e09c7e5 Mon Sep 17 00:00:00 2001 From: Norbert Schmidt Date: Mon, 16 Jan 2023 11:38:16 +0100 Subject: [PATCH] Update config auth --- capacitor.config.json | 2 +- capacitor.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/capacitor.config.json b/capacitor.config.json index 9ab564a..a97880c 100644 --- a/capacitor.config.json +++ b/capacitor.config.json @@ -8,7 +8,7 @@ "plugins": { "GoogleAuth": { "scopes": ["profile", "email"], - "clientId": "778522712103-tqkc468qermr7hvbqsmm2p2ueglcmjsi.apps.googleusercontent.com", + "clientId": "your key here.apps.googleusercontent.com", "forceCodeForRefreshToken" : true } } diff --git a/capacitor.config.ts b/capacitor.config.ts index f75942f..b8508ff 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -9,7 +9,7 @@ const config: CapacitorConfig = { // eslint-disable-next-line @typescript-eslint/naming-convention GoogleAuth: { scopes: ['profile', 'email'], - androidClientId: '778522712103-tqkc468qermr7hvbqsmm2p2ueglcmjsi.apps.googleusercontent.com', + androidClientId: '778522712103-put key here.apps.googleusercontent.com', forceCodeForRefreshToken: true, } }