adte
07/23/2023, 1:04 PMfred
07/24/2023, 2:30 PM@Component
— you have to expose the object you want in the component, create the component, and make the call, just like vanilla Dagger
@Inject
class MyObject
@Component
abstract class MyComponent {
val myObject: MyObject
}
val myObject = MyComponent::class.create().myObject