fix: call GoogleAuth.initialize only on web to resolve Native OAuth error

This commit is contained in:
2026-06-27 20:29:01 +07:00
parent 3fa80b69bf
commit eaf79eaf8f
2 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
<meta name="twitter:title" content="Travel Planner - Lên kế hoạch chuyến đi của bạn" />
<meta name="twitter:description" content="Khám phá những hành trình tuyệt vời và chia sẻ khoảnh khắc đẹp với cộng đồng du lịch." />
<meta name="twitter:image" content="https://yotrip.labz.io.vn/background.avif" />
<script type="module" crossorigin src="/assets/index-H2Y9oIlO.js"></script>
<script type="module" crossorigin src="/assets/index-BlsmMRXS.js"></script>
<link rel="modulepreload" crossorigin href="/assets/rolldown-runtime-Cyuzqnbw.js">
<link rel="modulepreload" crossorigin href="/assets/vendor-others-VIU5qAPG.js">
<link rel="modulepreload" crossorigin href="/assets/vendor-editor-DOXkNaRS.js">
+7 -4
View File
@@ -26,18 +26,21 @@ function rewriteUrls(obj: any, backendUrl: string): any {
return obj;
}
if (Capacitor.isNativePlatform()) {
// Initialize native Google Login client to prevent NullPointerException crashes
if (!Capacitor.isNativePlatform()) {
// Initialize Web/PWA Google Login client
try {
GoogleAuth.initialize({
clientId: import.meta.env.VITE_GOOGLE_CLIENT_ID || '639044397050-7hair384u6lle941h033trut1s3q47l4.apps.googleusercontent.com',
scopes: ['profile', 'email'],
grantOfflineAccess: true,
});
console.log('[Native OAuth] GoogleAuth initialized successfully.');
console.log('[Web OAuth] GoogleAuth initialized successfully.');
} catch (e) {
console.error('[Native OAuth] Failed to initialize GoogleAuth client:', e);
console.error('[Web OAuth] Failed to initialize GoogleAuth client:', e);
}
}
if (Capacitor.isNativePlatform()) {
// Request native local notification permission on startup
try {