Cannot find DaggerAppComponent inside Application class
I'm using kotlin latest version and trying to implement dagger2, but after rebuilding the project the suggestions would never give me "DaggerAppComponent" to build.
my dependencies
implementation 'com.google.dagger
dagger2.38.1'
implementation 'com.google.dagger
dagger android2.38.1'
implementation 'com.google.dagger
dagger android support2.35.1'
annotationProcessor 'com.google.dagger
dagger compiler2.38.1'
annotationProcessor 'com.google.dagger
dagger android processor2.38.1'
And I...