We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2291d74 commit 2d6dd09Copy full SHA for 2d6dd09
README.md
@@ -0,0 +1,20 @@
1
+Learn Dagger progressively by examples
2
+
3
+## Step 1 - Simple Dagger setup
4
+Should be sufficient for most multi-activity apps. The same approach used for Activities here can be used for Fragments too.
5
+- Automatic dependency resolution `@Inject constructor`
6
+- `@Singleton` scope
7
+- Activity scope
8
+https://github.com/ericntd/dagger-cat/tree/step-1-bare-minimum
9
10
+## Step 2 - Dependency Components
11
+https://github.com/ericntd/dagger-cat/tree/step2-dependent-component
12
13
+## Step 3 - SubComponent
14
+https://github.com/ericntd/dagger-cat/tree/step-3-subcomponent
15
16
+## Step 4 - Hilt
17
+TODO
18
19
+## Step 5 - Advanced Scoping
20
0 commit comments