From 553c16ab01be0ac1e46b8a4d585754026950dc0d Mon Sep 17 00:00:00 2001 From: SayantanRC Date: Wed, 25 May 2022 15:21:57 +0530 Subject: [PATCH] App lounge: (issue_5504) Decrease notification channel priority. --- .../foundation/e/apps/manager/workmanager/InstallAppWorker.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/foundation/e/apps/manager/workmanager/InstallAppWorker.kt b/app/src/main/java/foundation/e/apps/manager/workmanager/InstallAppWorker.kt index 61febf65e..5102cfebc 100644 --- a/app/src/main/java/foundation/e/apps/manager/workmanager/InstallAppWorker.kt +++ b/app/src/main/java/foundation/e/apps/manager/workmanager/InstallAppWorker.kt @@ -193,7 +193,7 @@ class InstallAppWorker @AssistedInject constructor( val mChannel = NotificationChannel( "applounge_notification", title, - NotificationManager.IMPORTANCE_DEFAULT + NotificationManager.IMPORTANCE_LOW ) notificationManager.createNotificationChannel(mChannel) } -- GitLab