From a9592111763e19dabbcf5cd14f96df9857cfd433 Mon Sep 17 00:00:00 2001 From: Boris Timofeev Date: Sat, 2 Sep 2017 12:36:13 +0300 Subject: [PATCH] fix crash on Android O --- .../java/org/emunix/unipatcher/WorkerService.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/org/emunix/unipatcher/WorkerService.java b/app/src/main/java/org/emunix/unipatcher/WorkerService.java index d9548ec..5ddb7c0 100644 --- a/app/src/main/java/org/emunix/unipatcher/WorkerService.java +++ b/app/src/main/java/org/emunix/unipatcher/WorkerService.java @@ -24,6 +24,7 @@ import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Intent; +import android.os.Build; import android.os.PowerManager; import android.support.v4.app.NotificationCompat; @@ -150,13 +151,12 @@ public class WorkerService extends IntentService { else errorMsg = getString(R.string.notify_error_unknown_patch_format); - Notify notify = new PatchingNotify(this, outputFile.getName()); - if (errorMsg != null) { - notify.showResult(errorMsg); + showErrorNotification(errorMsg); return; } + Notify notify = new PatchingNotify(this, outputFile.getName()); startForeground(notify.getID(), notify.getNotifyBuilder().build()); try { @@ -335,6 +335,12 @@ public class WorkerService extends IntentService { .setStyle(new NotificationCompat.BigTextStyle() .bigText(text)) .build(); - nm.notify(0, notify); + + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) { + nm.notify(32768, notify); + } else { + startForeground(32768, notify); + stopForeground(STOP_FOREGROUND_DETACH); + } } } \ No newline at end of file