From 265e2215980278d741b2dcd0b1e9cbd845917d81 Mon Sep 17 00:00:00 2001 From: Jonathan Klee Date: Fri, 9 Feb 2024 09:04:40 +0100 Subject: [PATCH 1/2] Set split install notification silent --- .../e/apps/install/splitinstall/SplitInstallBinder.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/main/java/foundation/e/apps/install/splitinstall/SplitInstallBinder.kt b/app/src/main/java/foundation/e/apps/install/splitinstall/SplitInstallBinder.kt index 053240c92..aad39a2d7 100644 --- a/app/src/main/java/foundation/e/apps/install/splitinstall/SplitInstallBinder.kt +++ b/app/src/main/java/foundation/e/apps/install/splitinstall/SplitInstallBinder.kt @@ -106,7 +106,7 @@ class SplitInstallBinder( val notificationChannel = NotificationChannel( NOTIFICATION_CHANNEL, NOTIFICATION_CHANNEL, - NotificationManager.IMPORTANCE_HIGH + NotificationManager.IMPORTANCE_LOW ).apply { description = descriptionText } @@ -140,7 +140,6 @@ class SplitInstallBinder( .setSmallIcon(R.drawable.app_lounge_notification_icon) .setContentTitle(context.getString(R.string.split_install_warning_title, appLabel)) .setContentText(contentText) - .setPriority(NotificationCompat.PRIORITY_MAX) .setStyle(NotificationCompat.BigTextStyle().bigText(contentText)) .addAction( NotificationCompat.Action.Builder( -- GitLab From 40a015d8dc9a6c5bd019f3d009eaad32d55a6bd7 Mon Sep 17 00:00:00 2001 From: Jonathan Klee Date: Wed, 7 Feb 2024 14:50:18 +0100 Subject: [PATCH 2/2] Bump version to 2.6.11 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index b0354de7c..bf8cfba1c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,7 +11,7 @@ plugins { def versionMajor = 2 def versionMinor = 6 -def versionPatch = 9 +def versionPatch = 11 def getGitHash = { -> def stdOut = new ByteArrayOutputStream() -- GitLab