kirillrakhman
12/16/2016, 3:01 PMContext
comes from so I mark it as `@Provided`: class Greeter(@Provided val c: Context, val message: String)
and I get a GreeterFactory
for free which I can use as a "dependency" and just supply the message:
@Injected val greeterFactory: GreeterFactory
val greeter = greeterFactory.create(message)