본문 바로가기
개발 과정/문제 해결

Hilt 오류 해결 방법

by 개발자D 2024. 11. 14.

Hilt 오류 해결 방법

오류 1

Logcat

The compiler option dagger.hilt.android.internal.projectType is not a recognized Hilt option. Is there a typo

 

해결 방법

project 수준의 build.gradle의 hilt 버전과 app 수준의 build.gradle의 hilt 버전을 맞춰줍니다.

 

 

오류 2

Logcat

java.lang.IllegalStateException: Given component holder class … does not implement interface dagger.hilt.internal.GenerateComponent or interface daggfer.hilt.internal.GeneratedComponentManager

해결 방법

…class 에 AndroidEntryPoint Anotation을 붙여줍니다.