The Hilt Android Gradle plugin is applied but no com.google.dagger:hilt-android dependency was found.
すいません、またハマっちゃいました、2回目です。
原因は以下なのですが。
androidx.hilt:hilt-lifecycle-viewmodel artifacts were deprecated in the Dagger 2.34 release in favor of native Hilt API.
👉 ComponentProcessingStep was unable to process '*Application_HiltComponents.SingletonC' · Issue #3257 · google/dagger
Migration steps:
...
4. Remove the old androidx.hilt:hilt-lifecycle-viewmodel dependency from your build.gradle file
👉 Release Dagger 2.34 · google/dagger
以下があると、ビルドでコケます。
implementation 'androidx.hilt:hilt-lifecycle-viewmodel:x.y.z'
知ってます、みんなハマっています。
対応方法
これでいけます。
dependencies {
//implementation 'androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03'
//kapt 'androidx.hilt:hilt-compiler:1.0.0'
implementation 'com.google.dagger:hilt-android:2.42'
kapt 'com.google.dagger:hilt-compiler:2.42'
androidx.hilt.* だけでは、ビルドできないか、インストール→起動後に落ちます。まだあやしい。
なぜ、ハマるのか
公式リファレンスに記述があるんですよね、この記述。
👉 Hilt と Jetpack の統合 | Android デベロッパー | Android Developers
Hilt に隠れて Dagger のバージョンが見えづらくなってることにも原因があるように思います。
👉 Error: ComponentProcessingStep was unable to process 'AppApplication_HiltComponents.SingletonC' because 'DefaultActivityViewModelFactory' could not be resolved.