Skip to content

Instantly share code, notes, and snippets.

@pfmaggi
Created March 31, 2020 18:40
Show Gist options
  • Save pfmaggi/814e38fd9844b3eb286c35c139ef58c4 to your computer and use it in GitHub Desktop.
Save pfmaggi/814e38fd9844b3eb286c35c139ef58c4 to your computer and use it in GitHub Desktop.
Code for the Medium article: "Customizing WorkManager"
/* Copyright 2019 Google LLC.
SPDX-License-Identifier: Apache-2.0 */
@Singleton
@Provides
fun provideWorkManagerConfiguration(
ioschedWorkerFactory: IoschedWorkerFactory
): Configuration {
return Configuration.Builder()
.setMinimumLoggingLevel(android.util.Log.DEBUG)
.setWorkerFactory(ioschedWorkerFactory)
.build()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment