Do I need to learn Hilt or Koin now before proceed...
# getting-started
p
Do I need to learn Hilt or Koin now before proceeding to make an app ?
c
No
You can build apps without hilt or koin or any kind of DI library. Eventually when an app is large enough it can be helpful, but even then a lot of people just do manual DI
s
Dependency Injection as a whole is an excellent tool for organizing projects once they become bigger than a few source files. It's not a necessary tool at all, but would probably be worth your time learning once your project scales enough
💯 1
p
Okay, thanks guys