Hi everyone Is there any di library present in ko...
# getting-started
v
Hi everyone Is there any di library present in kotlin which can be used for any kotlin project not specific to android like dagger
n
Dagger is not specific to Android, but yes, Hilt is. If dagger isn't your cup of tea, you can use Koin instead. Its learning curve is a bit more gentle.
v
Yup i am trying to use koin, Can you please share if any reference is present how dagger can be used outside android, i tried looking for it but couldn't get any it will be helpful.
n
Dagger can be used in any jvm project. Check out the official example if you want a base to build on: https://github.com/google/dagger/tree/master/examples/maven/coffee/src/main/java/example/dagger.
👍 1
The dev guide is quite readable to me too, if you want more documentation: https://dagger.dev/dev-guide/
v
Thankyou, this example is helpful @Nino