From dc3b4c10626ed39c529c56f0ac75c29bf82fabe4 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 29 Jul 2020 14:06:32 +0300 Subject: [PATCH] Made notification text more clear. --- .../java/org/microg/gms/common/ForegroundServiceContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java b/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java index 543f3188..d63c9021 100644 --- a/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java +++ b/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java @@ -75,7 +75,7 @@ public class ForegroundServiceContext extends ContextWrapper { return new Notification.Builder(context, channel.getId()) .setOngoing(true) .setContentTitle("Running in background") - .setContentText("This notification ensures that microG does not get killed.") + .setContentText("This notification ensures that microG does not get killed. Disable battery optimisations for microG to remove it") .setSmallIcon(R.drawable.ic_foreground_notification) .build(); }