Skip to content

Instantly share code, notes, and snippets.

@kirich1409
Created November 11, 2019 20:21
Show Gist options
  • Save kirich1409/ae2798a368273eeeb9270a6bb5b27f33 to your computer and use it in GitHub Desktop.
Save kirich1409/ae2798a368273eeeb9270a6bb5b27f33 to your computer and use it in GitHub Desktop.
class SampleApplication : Application() {
lateinit var appComponent: AppComponent
override fun onCreate() {
super.onCreate()
appComponent = DaggerAppComponent.create()
registerActivityLifecycleCallbacks(
SetFragmentFactoryActivityCallback(appComponent.fragmentFactory)
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment