Auto-Dagger2 icon indicating copy to clipboard operation
Auto-Dagger2 copied to clipboard

Annotation processor on top of Dagger 2 that generates components for you.

Results 4 Auto-Dagger2 issues
Sort by recently updated
recently updated
newest added

This feature allow to add subcomponents to @AutoSubcomponent

I was implementing inheritance hierarchy with my screens and faced an issue with `@AutoComponent`. I have next hierarchy of components: -- MainActivityComponent ---- DrawerKeyComponent ------ ListKeyComponent I got manually defined...

Hi! I'm using `Architect-Robot` and it seems that `Auto-Dagger2` doesn't handle `@Named` arguments. E.g. I have the following class (with multiple `Scheduler` arguments): ``` java @AutoStackable( component = @AutoComponent(includes =...

If I have ``` java @AutoComponent( dependencies = ApplicationComponent.class, modules = MainModule.class) @AutoInjector @PerActivity public class MainActivity extends Activity { } @AutoComponent( superinterfaces = MainActivity.class, modules = {MainModule.class}, dependencies =...