Dagger2
[Hilt] 3. 프로젝트에 Hilt 설정하기
https://dagger.dev/hilt/gradle-setup 3. Gradle Setup Hilt 의존성 추가 하기 Hilt를 사용하기 위해서는 다음 빌드 의존성을 모듈의 build.gradle 파일에 추가해야 한다. dependencies { implementation ‘com.google.dagger:hilt-android:<VERSION>’ annotationProcessor ‘com.google.dagger:hilt-android-compiler:<VERSION>’ // For instrumentation tests androidTestImplementation ‘com.google.dagger:hilt-android-testing:<VERSION>’ androidTestAnnotationProcessor ‘com.google.dagger:hilt-android-compiler:<VERSION>’ // For local unit tests testImplementation ‘com.google.dagger:hilt-android-testing:<VERSION>’ 더보기…