diff options
author | Bartłomiej Rudecki <ejbtrd@gmail.com> | 2023-11-16 11:46:59 +0100 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2023-12-31 21:50:10 +0800 |
commit | 82be2784067ee8f75c7519eb88ce4c2db9f7de2c (patch) | |
tree | 84ab6e377dc0125b14bf51f246658b563215a46f /src/org/lineageos/updater/controller/UpdaterService.java | |
parent | b6dffb380070e085d97b57a60f935aec34d46935 (diff) |
Updater: Define foregroundServiceTypeumineko
Required since Android 14 [1].
11-16 14:05:45.363 20623 20623 E AndroidRuntime: FATAL EXCEPTION: main
11-16 14:05:45.363 20623 20623 E AndroidRuntime: Process: org.lineageos.updater, PID: 20623
11-16 14:05:45.363 20623 20623 E AndroidRuntime: android.app.MissingForegroundServiceTypeException: Starting FGS without a type callerApp=ProcessRecord{6d14558 20623:org.lineageos.updater/u0a149} targetSDK=34
[1] https://developer.android.com/about/versions/14/changes/fgs-types-required
Change-Id: Id6217424177b94d37621062fb1a55778f1dabbab
Diffstat (limited to 'src/org/lineageos/updater/controller/UpdaterService.java')
-rw-r--r-- | src/org/lineageos/updater/controller/UpdaterService.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/org/lineageos/updater/controller/UpdaterService.java b/src/org/lineageos/updater/controller/UpdaterService.java index c279679..e1e0c99 100644 --- a/src/org/lineageos/updater/controller/UpdaterService.java +++ b/src/org/lineageos/updater/controller/UpdaterService.java @@ -24,6 +24,7 @@ import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.SharedPreferences; +import android.content.pm.ServiceInfo; import android.os.Binder; import android.os.Bundle; import android.os.IBinder; @@ -275,7 +276,8 @@ public class UpdaterService extends Service { mNotificationBuilder.setTicker(text); mNotificationBuilder.setOngoing(true); mNotificationBuilder.setAutoCancel(false); - startForeground(NOTIFICATION_ID, mNotificationBuilder.build()); + startForeground(NOTIFICATION_ID, mNotificationBuilder.build(), + ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE); mNotificationManager.notify(NOTIFICATION_ID, mNotificationBuilder.build()); break; } @@ -390,7 +392,8 @@ public class UpdaterService extends Service { mNotificationBuilder.setTicker(text); mNotificationBuilder.setOngoing(true); mNotificationBuilder.setAutoCancel(false); - startForeground(NOTIFICATION_ID, mNotificationBuilder.build()); + startForeground(NOTIFICATION_ID, mNotificationBuilder.build(), + ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE); mNotificationManager.notify(NOTIFICATION_ID, mNotificationBuilder.build()); break; } |