Dagger 2 same scope dependency

--

In Dagger 2, there’s two limitation in term of component dependency.

  1. Component of no scope can’t depend on scoped component
  2. Component of scope can’t depend on another component of same scope

In my example of Setup Android Modules with Dagger 2, due to different module have different component, I can’t have them in the same scope, even though they don’t need…

--

--