I have gone through various stackoverflow link some of the link are :
but no one solve this below are the gradle file and my application :
// dependency injection
implementation 'com.google.dagger:dagger-android:2.14.1'
implementation 'com.google.dagger:dagger-android-support:2.14.1'
annotationProcessor 'com.google.dagger:dagger-android-processor:2.14.1'
annotationProcessor 'com.google.dagger:dagger-compiler:2.14.1'
And the MyApplication file is :
DaggerAppComponent.builder()
.application(this)
.build()
.inject(this);
AppLogger.init();