Dagger is a compile-time framework for dependency injection. It uses no
reflection or runtime bytecode generation, does all its analysis at
compile-time, and generates plain Java source code.
Dagger is actively maintained by Google. Snapshot releases are auto-deployed to
Sonatype’s central Maven repository on every clean build with the version
HEAD-SNAPSHOT. The current version builds upon previous work done at Square.
First, import the Dagger repository into your WORKSPACE file using
http_archive.
Note: The http_archive must point to a tagged release of Dagger, not just any
commit. The version of the Dagger artifacts will match the version of the tagged
release.
This will add the following Hilt Android build targets:
(Note that these targets already export all of the dependencies and processors
they need).
deps = [
":hilt-android", # For Hilt Android
":hilt-android-testing", # For Hilt Android Testing
]
Other build systems
You will need to include the dagger-2.x.jar in your application’s runtime.
In order to activate code generation and generate implementations to manage
your graph you will need to include dagger-compiler-2.x.jar in your build
at compile time.
Maven
In a Maven project, include the dagger artifact in the dependencies section
of your pom.xml and the dagger-compiler artifact as an
annotationProcessorPaths value of the maven-compiler-plugin:
If you’re using classes in dagger.android you’ll also want to include:
implementation 'com.google.dagger:dagger-android:2.x'
implementation 'com.google.dagger:dagger-android-support:2.x' // if you use the support libraries
annotationProcessor 'com.google.dagger:dagger-android-processor:2.x'
Notes:
We use implementation instead of api for better compilation performance.
For Kotlin projects, use kapt in place of annotationProcessor.
If you’re using the Android Databinding library, you may want to
increase the number of errors that javac will print. When Dagger prints an
error, databinding compilation will halt and sometimes print more than 100
errors, which is the default amount for javac. For more information, see
Issue 306.
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "500" // or whatever number you want
}
}
If you do not use maven, gradle, ivy, or other build systems that consume
maven-style binary artifacts, they can be downloaded directly via the
Maven Central Repository.
Developer snapshots are available from Sonatype’s
snapshot repository, and are built on a clean build of
the GitHub project’s master branch.
Copyright 2012 The Dagger Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Dagger
A fast dependency injector for Java and Android.
Dagger is a compile-time framework for dependency injection. It uses no reflection or runtime bytecode generation, does all its analysis at compile-time, and generates plain Java source code.
Dagger is actively maintained by Google. Snapshot releases are auto-deployed to Sonatype’s central Maven repository on every clean build with the version
HEAD-SNAPSHOT. The current version builds upon previous work done at Square.Documentation
You can find the dagger documentation here which has extended usage instructions and other useful information. More detailed information can be found in the API documentation.
You can also learn more from the original proposal, this talk by Greg Kick, and on the dagger-discuss@googlegroups.com mailing list.
Installation
Bazel
First, import the Dagger repository into your
WORKSPACEfile usinghttp_archive.Note: The
http_archivemust point to a tagged release of Dagger, not just any commit. The version of the Dagger artifacts will match the version of the tagged release.Next you will need to setup targets that export the proper dependencies and plugins. Follow the sections below to setup the dependencies you need.
Dagger Setup
First, load the Dagger artifacts and repositories, and add them to your list of
maven_installartifacts.Next, load and call
dagger_rulesin your top-levelBUILDfile:This will add the following Dagger build targets: (Note that these targets already export all of the dependencies and processors they need).
Dagger Android Setup
First, load the Dagger Android artifacts and repositories, and add them to your list of
maven_installartifacts.Next, load and call
dagger_android_rulesin your top-levelBUILDfile:This will add the following Dagger Android build targets: (Note that these targets already export all of the dependencies and processors they need).
Hilt Android Setup
First, load the Hilt Android artifacts and repositories, and add them to your list of
maven_installartifacts.Next, load and call
hilt_android_rulesin your top-levelBUILDfile:This will add the following Hilt Android build targets: (Note that these targets already export all of the dependencies and processors they need).
Other build systems
You will need to include the
dagger-2.x.jarin your application’s runtime. In order to activate code generation and generate implementations to manage your graph you will need to includedagger-compiler-2.x.jarin your build at compile time.Maven
In a Maven project, include the
daggerartifact in the dependencies section of yourpom.xmland thedagger-compilerartifact as anannotationProcessorPathsvalue of themaven-compiler-plugin:If you are using a version of the
maven-compiler-pluginlower than3.5, add thedagger-compilerartifact with theprovidedscope:If you use the beta
dagger-producersextension (which supplies parallelizable execution graphs), then add this to your maven configuration:Gradle
If you’re using classes in
dagger.androidyou’ll also want to include:Notes:
implementationinstead ofapifor better compilation performance.kaptin place ofannotationProcessor.If you’re using the Android Databinding library, you may want to increase the number of errors that
javacwill print. When Dagger prints an error, databinding compilation will halt and sometimes print more than 100 errors, which is the default amount forjavac. For more information, see Issue 306.Resources
If you do not use maven, gradle, ivy, or other build systems that consume maven-style binary artifacts, they can be downloaded directly via the Maven Central Repository.
Developer snapshots are available from Sonatype’s snapshot repository, and are built on a clean build of the GitHub project’s master branch.
Building Dagger
See the CONTRIBUTING.md docs.
License