I'm circling back to using Dagger (1.1.0) and struggling to debug in IntelliJ.
Can someone let me know if it's currently possible to debug a Dagger project with IntelliJ? If so, what the steps are?
I'm currently using a gradle build and in IntelliJ running 'gradle clean compileJava' before running my project's main method.
Here's the specific exception I get at runtime:
java.lang.IllegalStateException: Module adapter for class com.xxx.cli.YyyClient$YyyModule could not be loaded. Please ensure that code generation was run for this module.
at dagger.internal.FailoverLoader.getModuleAdapter(FailoverLoader.java:41)
at dagger.internal.Modules.getAllModuleAdapters(Modules.java:43)
at dagger.ObjectGraph$DaggerObjectGraph.makeGraph(ObjectGraph.java:167)
at dagger.ObjectGraph$DaggerObjectGraph.access$000(ObjectGraph.java:134)
at dagger.ObjectGraph.create(ObjectGraph.java:126)
Thanks!