Do background app/extension checks less frequently

Since the in-app checks occur at least once a day anyway.
This commit is contained in:
arkon
2021-08-13 18:24:21 -04:00
parent f23f22ab01
commit 8aa11951bf
2 changed files with 11 additions and 4 deletions

View File

@@ -73,9 +73,9 @@ class ExtensionUpdateJob(private val context: Context, workerParams: WorkerParam
.build()
val request = PeriodicWorkRequestBuilder<ExtensionUpdateJob>(
12,
TimeUnit.HOURS,
1,
2,
TimeUnit.DAYS,
3,
TimeUnit.HOURS
)
.addTag(TAG)