franztesca
10/24/2023, 9:50 PM// in module C
interface C
@Inject
class CImpl
// in module B
interface B
@Inject
class BImpl(private val c: C)
// In module A
interface A
@Inject
class AImpl(private val b: B)
@Component
abstract class AppComponent {
val AImpl.bind: A
@Provides get() = this
}
Is KI able to automatically link the modules, assuming that I add a gradle dependency from A->C, or not?