Skip to content

Instantly share code, notes, and snippets.

@manuelvicnt
Created June 4, 2021 13:02
Show Gist options
  • Save manuelvicnt/e2376a01107dcba5090003d5b894495b to your computer and use it in GitHub Desktop.
Save manuelvicnt/e2376a01107dcba5090003d5b894495b to your computer and use it in GitHub Desktop.
class ApplicationDiContainer {
val applicationScope = CoroutineScope(SupervisorJob() + Dispatchers.Default)
val myRepository = MyRepository(applicationScope)
}
class MyApplication : Application() {
val applicationDiContainer = ApplicationDiContainer()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment