Hi, is there a correct way to inject objects into ...
# dagger
k
Hi, is there a correct way to inject objects into an Application class in Android using Hilt?
@Inject lateinit var logger: Logger
is crashing because logger has not been initialized, any suggestions?
f
You need to annotate your Application with @HiltApplication and also add it to the manifest under android:name