Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 백준
- 데이터베이스
- 실버2
- DB 기능
- 2레벨
- 데이터베이스 첫걸음
- Android
- 성빈랜드
- 브론즈 1
- 개발하는 정대리
- Myungpyo Shim
- 실버 4
- DB
- .github
- Activirty
- kotlin
- github action
- 최댓값 최솟값
- gradlew
- 프로그래머스
- Bitrise
- navigation component
- capitalize
- 브론즈1
- LazyColumn
- 피보나치 수 2
- compose
- suspend programming
- LazyRow
- keystore
Archives
- Today
- Total
plzy의 개발 블로그
error: [ComponentProcessor:MiscError] dagger.internal.codegen.ComponentProcessor was unable to process this class because not all of its dependencies could be resolved. Check for compilation errors or a circular dependency with generated code 해결법 본문
카테고리 없음
error: [ComponentProcessor:MiscError] dagger.internal.codegen.ComponentProcessor was unable to process this class because not all of its dependencies could be resolved. Check for compilation errors or a circular dependency with generated code 해결법
plzyhappy 2022. 1. 22. 02:14error: [ComponentProcessor:MiscError] dagger.internal.codegen.ComponentProcessor was unable to process this class because not all of its dependencies could be resolved. Check for compilation errors or a circular dependency with generated code
dagger-hilt 에러이다.
나는 이 에러를 4일 동안 해결하지 못했다가
해결했다.
내가 시도했던 방법은
- app 수준에 있는 이걸 지웠고
configurations { implementation.exclude group: 'org.jetbrains', module: 'annotations' }
- okhttp version을 최신 버전으로 올린 후 빌드 한 후
- 이걸 다시 추가했더니 됐다.
configurations { implementation.exclude group: 'org.jetbrains', module: 'annotations' }