Skip to content

Instantly share code, notes, and snippets.

@cdsap
Created January 7, 2019 03:09
Show Gist options
  • Save cdsap/adb2bb822923bf4ae42692ed0d571317 to your computer and use it in GitHub Desktop.
Save cdsap/adb2bb822923bf4ae42692ed0d571317 to your computer and use it in GitHub Desktop.
WorkManager.kt
PeriodicWorkRequest.Builder(SyncWorker::class.java, 60, TimeUnit.MINUTES)
.setConstraints(Constraints.Builder()
.setRequiresCharging(false)
.setRequiredNetworkType(NetworkType.UNMETERED)
.setRequiresStorageNotLow(true)
.build())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment