Sort of related to the above. How do people like t...
# dagger
c
Sort of related to the above. How do people like to separate the same module that needs Provide methods and Binds. I'm currently doing
Copy code
@InstallIn(SingletonComponent::class)
@Module
class AppModuleProviders {
...
}

@Module
@InstallIn(SingletonComponent::class)
interface AppModuleBinders {
...
}
a
Put providers in the interface's
companion object
3
c
Did this today and it worked great. cheers