Kelvin Chung
01/11/2024, 8:32 PMabstract class MyExtension @Inject constructor(objects: ObjectFactory, other: MyNonInjectedType)
And this:
val myOther: MyNonInjectedType = ...
project.extensions.create<MyExtension>(myOther)
I'm getting an error that essentially states that myOther is not an ObjectFactory, which it isn't. Is this a matter where the constructor args are in the wrong order?