Skip to content

Instantly share code, notes, and snippets.

@cdmunoz
Created September 3, 2020 23:47
Show Gist options
  • Save cdmunoz/02ca4e54574cb970cfdf7fad6ff953e1 to your computer and use it in GitHub Desktop.
Save cdmunoz/02ca4e54574cb970cfdf7fad6ff953e1 to your computer and use it in GitHub Desktop.
Koin's start within Application class
class NasaRoverPhotosApp : Application() {
override fun onCreate() {
super.onCreate()
Timber.plant(DebugTree())
startKoin {
androidContext(this@NasaRoverPhotosApp)
modules(appModules)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment