Skip to content

Instantly share code, notes, and snippets.

@ceruleanotter
Last active January 30, 2019 20:54
Show Gist options
  • Save ceruleanotter/efc99abb6f9868454ed73bf97b870526 to your computer and use it in GitHub Desktop.
Save ceruleanotter/efc99abb6f9868454ed73bf97b870526 to your computer and use it in GitHub Desktop.
WorkManager Basics: Multiple constraints example
val constraints = Constraints.Builder()
.setRequiresBatteryNotLow(true)
.setRequiredNetworkType(NetworkType.CONNECTED)
.setRequiresCharging(true)
.setRequiresStorageNotLow(true)
.setRequiresDeviceIdle(true)
.build()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment