From 176e4704976e05f47a23e42a46d5dde5cdb00402 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Sat, 29 Dec 2018 17:56:24 +0800 Subject: [PATCH] Use platform icons for notifications --- .../com/topjohnwu/magisk/components/ProgressNotification.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/full/java/com/topjohnwu/magisk/components/ProgressNotification.java b/app/src/full/java/com/topjohnwu/magisk/components/ProgressNotification.java index cf35a1948..0f792a23f 100644 --- a/app/src/full/java/com/topjohnwu/magisk/components/ProgressNotification.java +++ b/app/src/full/java/com/topjohnwu/magisk/components/ProgressNotification.java @@ -59,7 +59,7 @@ public class ProgressNotification implements DownloadProgressListener { public void dlDone() { builder.setProgress(0, 0, false) .setContentText(App.self.getString(R.string.download_complete)) - .setSmallIcon(R.drawable.ic_check_circle) + .setSmallIcon(android.R.drawable.stat_sys_download_done) .setOngoing(false); lastUpdate(); } @@ -67,7 +67,7 @@ public class ProgressNotification implements DownloadProgressListener { public void dlFail() { builder.setProgress(0, 0, false) .setContentText(App.self.getString(R.string.download_file_error)) - .setSmallIcon(R.drawable.ic_cancel) + .setSmallIcon(android.R.drawable.stat_notify_error) .setOngoing(false); lastUpdate(); }