Hello.
I am developing multi-module Android project with Hilt version 2.28.3-alpha. I have included dagger compiler to every module which requests or provides. After compilation in Android studio 4.0.1 I see warnings in every module:
warning: The following options were not recognized
by any processor: '[dagger.fastInit, dagger.hilt.android.internal.disableAndroidSuperclassValidation, kapt.kotlin.generated]'
Though these are warnings I was taught to pay attention to them as well, since they might indicate a potential problem with logic or performance, or anything else.
Applications seems to compile and run successfully, but are these warnings important? May be I am missing some Dagger Hilt setting?
Thank you.