I am looking for some guidance on the best code structure for dagger in multi module android apps. Lets say we have featureModuleA and featureModuleB, both of w
Say I have MapperModule like below: @Module public class MapperModule { @Singleton @Provides public static ObjectMapper provideObjectMapper () {
Say I have MapperModule like below: @Module public class MapperModule { @Singleton @Provides public static ObjectMapper provideObjectMapper () {
My data class like: data class Animal(var id:Int = 2) { } My Provides method in module class like: @Provides @Singleton fun provide():
In my module, in my base Application class component = DaggerCompClassComponent.builder() .classModule(new ModuleClass()).build(); it can no
I just started using Dagger Hilt for dependency injection on Android and I get a warning on Android Studio saying 'ApplicationComponent' is deprecated. Deprecat
I just started using Dagger Hilt for dependency injection on Android and I get a warning on Android Studio saying 'ApplicationComponent' is deprecated. Deprecat
@Module @InstallIn(SingletonComponent::class) class WheelModule constructor(val size:Int) { @Provides fun provideWheel():Wheel = Wheel(size) } Module