make notifications silent

This commit is contained in:
Matthew Fosse 2024-12-26 12:15:18 -05:00
parent 3fca1eebe5
commit 9be1f7fe00

View file

@ -474,6 +474,10 @@ Future<void> initializeService(FlutterBackgroundService bgService, bool useNotif
"${notificationChannelName}_$i",
description: notificationChannelDescription,
importance: Importance.min,
playSound: false,
showBadge: false,
enableVibration: false,
enableLights: false,
);
await flutterLocalNotificationsPlugin
.resolvePlatformSpecificImplementation<AndroidFlutterLocalNotificationsPlugin>()