It seems that Dagger 2.11 is not compatible with Guava 22.0-android due to the loss of methods like SetMultimap.forEach. When compiling an Android project with both libraries I'm receiving the following error. Will there be an effort to stay compatible with the new *-android line of Guava releases?
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> java.lang.NoSuchMethodError: com.google.common.collect.SetMultimap.forEach(Ljava/util/function/BiConsumer;)V
It seems that Dagger 2.11 is not compatible with Guava 22.0-android due to the loss of methods like
SetMultimap.forEach. When compiling an Android project with both libraries I'm receiving the following error. Will there be an effort to stay compatible with the new *-android line of Guava releases?