Skip to content

Instantly share code, notes, and snippets.

@tfcporciuncula
Created April 8, 2019 18:33
Show Gist options
  • Save tfcporciuncula/ccf90f560b0a6e2174b19801a05bcd7d to your computer and use it in GitHub Desktop.
Save tfcporciuncula/ccf90f560b0a6e2174b19801a05bcd7d to your computer and use it in GitHub Desktop.
ApplicationInjection.kt
@Component(modules = [ApplicationModule::class, ...])
interface ApplicationComponent {
...
}
@Module
class ApplicationModule(private val applicationContext: Context) {
@Provides fun provideApplicationContext() = applicationContext
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment