fix(app): Set foreground service types for library update jobs

This commit is contained in:
arkon 2023-12-02 11:20:41 -05:00 committed by Claudemirovsky
parent 7193a25fe4
commit db2247d905
No known key found for this signature in database
GPG key ID: 82AE76162407356E
4 changed files with 30 additions and 0 deletions

View file

@ -1,6 +1,8 @@
package eu.kanade.tachiyomi.data.library.anime package eu.kanade.tachiyomi.data.library.anime
import android.content.Context import android.content.Context
import android.content.pm.ServiceInfo
import android.os.Build
import androidx.work.BackoffPolicy import androidx.work.BackoffPolicy
import androidx.work.Constraints import androidx.work.Constraints
import androidx.work.CoroutineWorker import androidx.work.CoroutineWorker
@ -140,6 +142,12 @@ class AnimeLibraryUpdateJob(private val context: Context, workerParams: WorkerPa
return ForegroundInfo( return ForegroundInfo(
Notifications.ID_LIBRARY_PROGRESS, Notifications.ID_LIBRARY_PROGRESS,
notifier.progressNotificationBuilder.build(), notifier.progressNotificationBuilder.build(),
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC
} else {
0
},
) )
} }

View file

@ -1,6 +1,8 @@
package eu.kanade.tachiyomi.data.library.anime package eu.kanade.tachiyomi.data.library.anime
import android.content.Context import android.content.Context
import android.content.pm.ServiceInfo
import android.os.Build
import androidx.work.CoroutineWorker import androidx.work.CoroutineWorker
import androidx.work.ExistingWorkPolicy import androidx.work.ExistingWorkPolicy
import androidx.work.ForegroundInfo import androidx.work.ForegroundInfo
@ -82,6 +84,12 @@ class AnimeMetadataUpdateJob(private val context: Context, workerParams: WorkerP
return ForegroundInfo( return ForegroundInfo(
Notifications.ID_LIBRARY_PROGRESS, Notifications.ID_LIBRARY_PROGRESS,
notifier.progressNotificationBuilder.build(), notifier.progressNotificationBuilder.build(),
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC
} else {
0
},
) )
} }

View file

@ -1,6 +1,8 @@
package eu.kanade.tachiyomi.data.library.manga package eu.kanade.tachiyomi.data.library.manga
import android.content.Context import android.content.Context
import android.content.pm.ServiceInfo
import android.os.Build
import androidx.work.BackoffPolicy import androidx.work.BackoffPolicy
import androidx.work.Constraints import androidx.work.Constraints
import androidx.work.CoroutineWorker import androidx.work.CoroutineWorker
@ -140,6 +142,11 @@ class MangaLibraryUpdateJob(private val context: Context, workerParams: WorkerPa
return ForegroundInfo( return ForegroundInfo(
Notifications.ID_LIBRARY_PROGRESS, Notifications.ID_LIBRARY_PROGRESS,
notifier.progressNotificationBuilder.build(), notifier.progressNotificationBuilder.build(),
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC
} else {
0
},
) )
} }

View file

@ -1,6 +1,8 @@
package eu.kanade.tachiyomi.data.library.manga package eu.kanade.tachiyomi.data.library.manga
import android.content.Context import android.content.Context
import android.content.pm.ServiceInfo
import android.os.Build
import androidx.work.CoroutineWorker import androidx.work.CoroutineWorker
import androidx.work.ExistingWorkPolicy import androidx.work.ExistingWorkPolicy
import androidx.work.ForegroundInfo import androidx.work.ForegroundInfo
@ -82,6 +84,11 @@ class MangaMetadataUpdateJob(private val context: Context, workerParams: WorkerP
return ForegroundInfo( return ForegroundInfo(
Notifications.ID_LIBRARY_PROGRESS, Notifications.ID_LIBRARY_PROGRESS,
notifier.progressNotificationBuilder.build(), notifier.progressNotificationBuilder.build(),
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC
} else {
0
},
) )
} }