@Arun I have an existing project, you didn't reply my question.
t
Tim Malseed
11/13/2023, 10:46 AM
It is possible, yes. Just add the dagger/hilt plugin to your module’s build.gradle, and perform your DI logic in the androidMain source set
The classes don’t need to be ‘superclasses’ - they can just be regular commonMain classes. Your dagger @Module is just defining how to provide instances of those classes. You don’t need expect/actual or whatever