ulfberht icon indicating copy to clipboard operation
ulfberht copied to clipboard

🗡️ A small but powerful & opinionated DI library. Written in Kotlin, and powered by annotation processing.

Results 6 ulfberht issues
Sort by recently updated
recently updated
newest added

Make the processor incremental.

pre-1.0

Verify that all dependencies are satisfied at compile time

pre-1.0

This is an issue to request for direct constructor injection. Currently the @Inject functionality cannot be used on the constructor of a class. Current behaviour: `data class DependencyA ` ```...

enhancement
pre-1.0

A simple case: ```kotlin @Module abstract class MyModule1 { @Provides @IntoSet fun stringOne(): String = "hello" } @Module abstract class MyModule2 { @Provides @IntoSet fun stringTwo(): String = "world!" }...

enhancement

A simple case: ```kotlin @Module abstract class MyModule1 { @Provides @IntoMap("one") fun stringOne(): String = "hello, " } @Module abstract class MyModule2 { @Provides @IntoMap("two") fun stringTwo(): String = "world!"...

enhancement