diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index bfe5a748a..b72704c99 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -241,7 +241,7 @@
+ android:foregroundServiceType="dataSync" />
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
+ startForeground(
+ Notifications.ID_EXTENSION_INSTALLER,
+ notification,
+ ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC,
+ )
+ } else {
+ // KMK <--
+ startForeground(Notifications.ID_EXTENSION_INSTALLER, notification)
+ }
}
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {