From fc5692f7d5823b3010fbb80df20707de3f0dce3b Mon Sep 17 00:00:00 2001 From: Billy Jasinski <160557571+billy-thegreat@users.noreply.github.com> Date: Tue, 10 Mar 2026 10:58:10 -0400 Subject: [PATCH] fix: android system status bar and nav bar cover app ui (#6779) * fix: app covered by android system the android status bar and nav bar cover app components * change to capacitor android margins to 'auto' --- capacitor.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/capacitor.config.ts b/capacitor.config.ts index 23445f0fde..7fe7498c48 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -18,7 +18,9 @@ const config: CapacitorConfig = { resizeOnFullScreen: true, }, }, - android: {}, + android: { + adjustMarginsForEdgeToEdge: 'auto', + }, ios: { // Content inset for safe areas (notch, home indicator) contentInset: 'never',