Component (unscoped) may not reference scoped bindings

Put @Singleton with your Component

@Singleton
@Subcomponent(modules = arrayOf(NetModule::class))
interface NetComponent {
fun inject(service: CurrencyDownloaderService)
}

Leave a Comment