From 682c6d4e7badc4766dcc5dc0dcb839d3e70b7c59 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Thu, 5 Jul 2018 03:21:41 +0800 Subject: [PATCH] Prettier notification text --- .../com/topjohnwu/magisk/services/OnBootIntentService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/full/java/com/topjohnwu/magisk/services/OnBootIntentService.java b/src/full/java/com/topjohnwu/magisk/services/OnBootIntentService.java index c4204c3ea..a172736a5 100644 --- a/src/full/java/com/topjohnwu/magisk/services/OnBootIntentService.java +++ b/src/full/java/com/topjohnwu/magisk/services/OnBootIntentService.java @@ -23,8 +23,8 @@ public class OnBootIntentService extends IntentService { startForeground(Const.ID.ONBOOT_NOTIFICATION_ID, new NotificationCompat.Builder(this, Const.ID.NOTIFICATION_CHANNEL) .setSmallIcon(R.drawable.ic_magisk_outline) - .setContentTitle("onBoot") - .setContentText("Running onBoot operations...") + .setContentTitle("Startup Operations") + .setContentText("Running startup operations...") .build()); } }