Caused by: java.lang.RuntimeException: cannot find implementation for com.jikyunghee.mobile.android.myapplication.learn.mvvm.db.ContactDatabase. ContactDatabase_Impl does not exist
Error!
//room
implementation 'androidx.room:room-runtime:2.2.5'
해결! - annotationProcessor을 추가해준다!
//room
implementation 'androidx.room:room-runtime:2.2.5'
annotationProcessor 'androidx.room:room-compiler:2.2.5'
annotationProcessor: 컴파일 시점으로 코드를 생성
참고
https://cchoimin.tistory.com/entry/Gradle-annotationProcessor
반응형
'Platform > Android' 카테고리의 다른 글
[Android Studio/Eclipse] keymap-단축키 (0) | 2020.05.13 |
---|---|
[debug] Room Database / SharedPreferences 디버깅 (0) | 2020.04.14 |
[Error] lombok과 Room을 같이 쓸 때-Cannot fine getter for field (0) | 2020.04.14 |
[Error] lombok 적용이 안될 때-Annotation processors must be explicitly declared now. (0) | 2020.04.13 |
[Jetpack] 0. 개요 (2) | 2020.04.03 |