In Java I used to keep my `@Provides` methods stat...
# kapt
d
In Java I used to keep my
@Provides
methods static. In Kotlin, if I declare
@Provides
method in companion object, I have two generated factories instead of one:
AppModule_Companion_ProvideMainPresenterFactory
and
AppModule_ProvideMainPresenterFactory
How it can be avoided?