From da2eed1fd2b29e00ce96f8f2472b5929c345cc30 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Mon, 21 Apr 2025 16:53:12 +0200 Subject: [PATCH] feat(android): adjust android notification icon --- capacitor.config.json | 8 -------- capacitor.config.ts | 3 +++ 2 files changed, 3 insertions(+), 8 deletions(-) delete mode 100644 capacitor.config.json diff --git a/capacitor.config.json b/capacitor.config.json deleted file mode 100644 index 4d4feb5ab..000000000 --- a/capacitor.config.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "webDir": "dist/browser", - "android": { - "path": "android" - }, - "LocalNotifications": { - } -} diff --git a/capacitor.config.ts b/capacitor.config.ts index 1ff2e38f5..9f030fbeb 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -8,6 +8,9 @@ const config: CapacitorConfig = { CapacitorHttp: { enabled: true, }, + LocalNotifications: { + smallIcon: 'ic_stat_sp', + }, }, };