Skip to content

Instantly share code, notes, and snippets.

@YuanLiou
Created April 28, 2022 10:52
Show Gist options
  • Save YuanLiou/1efcf1aff3597bb9883bbe77799af517 to your computer and use it in GitHub Desktop.
Save YuanLiou/1efcf1aff3597bb9883bbe77799af517 to your computer and use it in GitHub Desktop.
Hilt Scope Sample 05
@InstallIn(SingletonComponent::class)
@Module
abstract class MyModule {
@Singleton
@Binds
abstract fun bindingFunction(myImpl: MyInterfaceImpl) : MyInterface
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment