warning : The following options were not recognized by any processor: '[dagger.fastInit, kapt.kotlin.generated]'

Viewed 5792

I get this warning when I try to run or build an app in Android Studio. Why am I getting this? Do I need to heed this warning?

The following options were not recognized by any processor: '[dagger.fastInit, kapt.kotlin.generated]'
1 Answers

That happens when you compile a multi module project and some module has kapt but no entry point.

The issue is described here but is was already fixed here.

Just wait until next Android studio release or check if you have the latest versions of hilt and dagger

Related