dagger
dagger copied to clipboard
A fast dependency injector for Android and Java.
when I add the line hilt { enableAggregatingTask = true} error (Execution failed for task ':app:dependencies) happend > Execution failed for task ':app:dependencies'. Cannot change dependencies of dependency configuration ':app:hmsDebugAndroidTestRuntimeClasspath'...
The compiler should be self-contained so as to not cause dependency resolution problems with our upstream library usage choices. Cross filed for v2 at https://github.com/google/dagger/issues/79.
When using reflection to get the fields from a class, the order of the fields is not guaranteed to be in any specific order. Some tests, like `multiValueBindings_WithSingletonsAcrossMultipleInjectableTypes`, may fail...
maybe i use bazel build :all ? i use the IDE of inteliji ide
It doesn't make sense for a @Provides method to provide a null value. We should throw at the injection stage, when this happens, to catch errors closer to their source....
I am pretty sure this is a dagger issue and not an google/auto one, but feel free to correct me. When trying to provide an implementation of an interface: ```...
Consider that DeleteBastion class has no injectable members and I have a factory class as follows: ``` @Singleton public static class Factory { @Inject MembersInjector injector; public DeleteBastion create(Regions region,...
Hey Guys, We are facing problem while compiling our code using dagger 1.2.1. Can you please guide us how to resolve the issue. I am copying full stacktrace below. Your...
Hello, thanks for dagger, which is great. A co-worker of mine who was unfamiliar with it was confused all the time from where those `@Inject` fields come from. To make...