Cong Vu Chi

Results 5 comments of Cong Vu Chi

@dees91 I think v3.5.3 behavior is least astonishing because `factory { }` will provide a new `SomeDependency` instance each time a viewModel requests it

@dees91 pardon me if I understand your usecase wrong. So basically, you want to share the same `SomeDependency` instance to all `ViewModel` instances correct? I tried `ScopeSDL.scoped { }` dsl...

@dees91 in that case, I'd like to keep track of the issue and see how it will be resolved.

My workaround is manually create binding in `FeatureModule`: ``` @Module @ComponentScan(..) public class FeatureModule { @Single internal provideB(): B = A() } ```

@arnaudgiuliani I did. Would a sample repo help you reproduce the issue?