Describe the issue
For larger Java projects it can be very helpful to emphasize composition over simple inheritance when building out the class structures and hierarchy. Composition allows for proper code separation and reusability making things easier to understand and to unit test.
The big downside of Composition (IMHO) is that you end up needing to be able to pass around a bunch of different classes that you use when "composing" your logic. This is where dependency injection frameworks become very useful because they can abstract away this overhead and allow developers to focus on the just the flow of the activity data they care about.
Describe the improvement you'd like
As our Java code-base here continues to grow and especially as we try to improve the coverage of the unit test cases, I think we should consider implementing a dependency injection framework such as Hilt.
Describe the issue For larger Java projects it can be very helpful to emphasize composition over simple inheritance when building out the class structures and hierarchy. Composition allows for proper code separation and reusability making things easier to understand and to unit test.
The big downside of Composition (IMHO) is that you end up needing to be able to pass around a bunch of different classes that you use when "composing" your logic. This is where dependency injection frameworks become very useful because they can abstract away this overhead and allow developers to focus on the just the flow of the activity data they care about.
Describe the improvement you'd like As our Java code-base here continues to grow and especially as we try to improve the coverage of the unit test cases, I think we should consider implementing a dependency injection framework such as Hilt.