728x90
반응형
SMALL
* 발생 상황 :
- 개발하던 중 room 관련 발생 에러
* 개발 환경 :
- AndroidStudio
- Kotlin
- libs :
- recyclerview 관련 라이브러리
- room 관련 라이브러리
* 에러문구 :
- "...The following depencies on the complile classpath are found to contain annotation processor..."
* 해결 :
-> build.gradle(:app)
android {
...
defaultConfig {
...
javaComileOptions {
annotationProcessorOptions {
includeCompileClasspath = true
}
}
...
}
...
}
위의 코드를 해당 위치에 넣어 줘서 해결하였음.
-끝-