Skip to content

Instantly share code, notes, and snippets.

@ursusursus
Last active December 29, 2019 06:49
Show Gist options
  • Save ursusursus/ba7135bf4fdb37f359af7cb5ae06b67c to your computer and use it in GitHub Desktop.
Save ursusursus/ba7135bf4fdb37f359af7cb5ae06b67c to your computer and use it in GitHub Desktop.
class App : Application(), AppComponentProvider {
private lateinit var _appComponent: AppComponentImpl
override fun onCreate() {
super.onCreate()
_appComponent = DaggerAppComponentImpl.factory().create()
}
override fun appComponent(): AppComponent {
return _appComponent
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment