Question: Suppose I have this: ```abstract class M...
# plugin-development
k
Question: Suppose I have this:
Copy code
abstract class MyExtension @Inject constructor(objects: ObjectFactory, other: MyNonInjectedType)
And this:
Copy code
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?