Skip to content

Instantly share code, notes, and snippets.

@lisamariewatkins
Created March 9, 2019 17:14
Show Gist options
  • Save lisamariewatkins/5e6e955bf5d51750f8267e95d49ce822 to your computer and use it in GitHub Desktop.
Save lisamariewatkins/5e6e955bf5d51750f8267e95d49ce822 to your computer and use it in GitHub Desktop.
class BaseApplication: Application(), HasActivityInjector {
@Inject
lateinit var dispatchingAndroidInjector: DispatchingAndroidInjector<Activity>
override fun onCreate() {
super.onCreate()
ApplicationInjector.init(this)
}
override fun activityInjector() = dispatchingAndroidInjector
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment