I'm building an app with some features: a ContentProvider a SyncAdapter, a Job service and related persistence logic. On top on these there are the Activities with the UI. I'm trying to put all said features in a separate library module, because in theory their logic is stand-alone and would be reusable by any application.
Now comes Dagger2. The first node (main Component) of my library's dependency graph does need to provide Context, and this Context has to be injected from the Application, because the library scope has the same lifecycle of the application. To be self contained, obviously, my library should not directly use my Application class.
These are the possibilities I thought of:
- Build the library's main Component in my Application and store it in a global static class/enum as suggested here but I'm concerned that using such a static reference could be an anti-pattern.
- Pack in the library an Application class which builds the library scoped Component, cast app context to this class in the library to use the component and then extend this Application class on the main app. This works, but if there's more than one library it's not viable anymore.
- Use the factory pattern: put provision methods in the library component that provide the factory which in turn is given the locally available context as a parameter. (As explained here). This seems viable, although it adds extra complexity.
- Last but non the least, give up trying to modularize the components, since being dependent on the application context breaks the concept of modularity.
What is the correct way to do this?
Dagger 2 for Android comes to the rescue. It provides the concept of
AndroidInjector
, which is aComponent
that can be used to inject an instance in a static way, without having to know the dependency provider. Moreover, using theDagger-
prefixed classes provided out of the box, the injected dependencies look like coming from nowhere. Awesome.All you have to do is declare in the library a top-level
Module
which is installed in the ApplicationComponent
. ThisModule
will provide all the dependencies and theSubComponent
s needed by the library, which will automatically inherit the@AppContext Context
that you seeded in the dependency graph, ready to be injected anywhere in you library, as well as every dependency you provide through the main ApplicationComponent
.Here's a short example (written in Kotlin):
Edit: extended examples
An example of the Application subclass:
And in your Android library: