×
MindLuster Logo
Join Our Telegram Channel Now to Get Any New Free Courses : Click Here

Dagger 2 Tutorial Part 12 SUBCOMPONENTS Android Studio Tutorial

Share your inquiries now with community members Click Here
Sign Up and Get Free Certificate
Sign up Now

Lessons List | 14 Lesson

Comments

Our New Certified Courses Will Reach You in Our Telegram Channel
Join Our Telegram Channels to Get Best Free Courses

Join Now

We Appreciate Your Feedback

Excellent
1 Reviews
Good
2 Reviews
medium
0 Reviews
Acceptable
0 Reviews
Not Good
0 Reviews

4.3

3 Reviews


areeba sohail

Was absolutely good 2023-12-02

Marcus Perez Pino

Marcos Roberto Perez Pino 2023-11-14

Tirupati Siva Sankar

https://t.me/mindluster/484 2023-06-04

Show More Reviews

Course Description

What is dagger module? Modules are a way of telling Dagger how to provide dependencies from the dependency graph. These are typically high level dependencies that you aren't already contributing to the dependency graph through the @Inject constructor annotation we discussed in our previous article.How does a dagger work? Dagger generates code similar to what you would have written manually. Internally, Dagger creates a graph of objects that it can reference to find the way to provide an instance of a class. For every class in the graph, Dagger generates a factory-type class that it uses internally to get instances of that type.What is dagger 2 used for? Dagger 2 walks through the dependency graph and generates code that is both easy to understand and trace, while also saving you from writing a large amount of boilerplate code you would normally need to write by hand to obtain references and pass them to other objects as dependencies.Why should we use dagger? Why dagger-android? The idea behind dagger-android is to reduce the boilerplate needed to inject objects. To be even more specific, the idea is to reduce that boilerplate code in Fragments, Activities or any other Android framework classes that are instantiated by the OS.What is the use of dagger in Android? In Android, you usually create a Dagger graph that lives in your application class because you want an instance of the graph to be in memory as long as the app is running. In this way, the graph is attached to the app lifecycle. In some cases, you might also want to have the application context available in the graph.