diff --git a/app/src/main/java/foundation/e/apps/manager/notification/NotificationManagerUtils.kt b/app/src/main/java/foundation/e/apps/manager/notification/NotificationManagerUtils.kt index e84ae04bfb680c8dfb5d48fc1608d53db4241d65..abcfbc53dc752bcf69d20d2e3d35af9e47fedaea 100644 --- a/app/src/main/java/foundation/e/apps/manager/notification/NotificationManagerUtils.kt +++ b/app/src/main/java/foundation/e/apps/manager/notification/NotificationManagerUtils.kt @@ -32,7 +32,7 @@ class NotificationManagerUtils @Inject constructor( fun showDownloadNotification(title: String): NotificationCompat.Builder { return NotificationCompat.Builder(context, NotificationManagerModule.DOWNLOADS) - .setSmallIcon(R.drawable.ic_launcher_foreground) + .setSmallIcon(R.drawable.app_lounge_notification_icon) .setContentTitle(title) .setProgress(0, 0, true) .setPriority(NotificationCompat.PRIORITY_DEFAULT) @@ -45,7 +45,7 @@ class NotificationManagerUtils @Inject constructor( context.getString(R.string.manual_updates_notification) } return NotificationCompat.Builder(context, NotificationManagerModule.UPDATES) - .setSmallIcon(R.drawable.ic_launcher_foreground) + .setSmallIcon(R.drawable.app_lounge_notification_icon) .setContentTitle( context.resources.getQuantityString( R.plurals.updates_notification_title, 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 f0b50fd91d10fb386e7f37afcd2b67df9c44b9b7..61febf65ecfbcb7c83960afc988b67fa1a123aad 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 @@ -202,7 +202,7 @@ class InstallAppWorker @AssistedInject constructor( .setContentTitle(title) .setTicker(title) .setContentText(progress) - .setSmallIcon(R.drawable.ic_launcher_foreground) + .setSmallIcon(R.drawable.app_lounge_notification_icon) .setOngoing(true) // Add the cancel action to the notification which can // be used to cancel the worker diff --git a/app/src/main/res/drawable-hdpi/app_lounge_notification_icon.png b/app/src/main/res/drawable-hdpi/app_lounge_notification_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c25efd652b98caad1531cbb839bb662e1d5184f3 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/app_lounge_notification_icon.png differ diff --git a/app/src/main/res/drawable-mdpi/app_lounge_notification_icon.png b/app/src/main/res/drawable-mdpi/app_lounge_notification_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..00fb90e9f8e3d9c864fcaef766083de89d111a52 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/app_lounge_notification_icon.png differ diff --git a/app/src/main/res/drawable-xhdpi/app_lounge_notification_icon.png b/app/src/main/res/drawable-xhdpi/app_lounge_notification_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..060ad9d64a38c7044cc807f722460c1639c50c5f Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/app_lounge_notification_icon.png differ diff --git a/app/src/main/res/drawable-xxhdpi/app_lounge_notification_icon.png b/app/src/main/res/drawable-xxhdpi/app_lounge_notification_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8fbe5ca4b6e1cf57e5b350f3b63e4f14a228d72e Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/app_lounge_notification_icon.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/app_lounge_notification_icon.png b/app/src/main/res/drawable-xxxhdpi/app_lounge_notification_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9a58e72b5a02a1f635e11acba5dc6e2942eb9610 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/app_lounge_notification_icon.png differ