Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 해석
- kakao
- C lanuage
- MySQL
- 안드로이드
- techEmpower
- 한글
- C
- error
- 구글
- unity
- 컴퓨터과학총론
- centOS7
- javascript
- 개발자
- 번역
- H2O
- java
- ubuntu
- Portfolio
- NGINX
- server
- 프래그먼트
- 자바
- caddy
- 개발
- php
- mariadb
- it
- android
Archives
- Today
- Total
개발모음집
android room runtime-error 본문
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.~.MainActivity}: java.lang.RuntimeException: cannot find implementation for com.~.Room.DB. DB_Impl does not exist
위 에러의 문제가 gradle dependencies에 추가되어있는 라이브러리 문제라고 한다
출처 : https://stackoverflow.com/questions/46665621/android-room-persistent-appdatabase-impl-does-not-exist/49323956
Android room persistent: AppDatabase_Impl does not exist
My app database class @Database(entities = {Detail.class}, version = Constant.DATABASE_VERSION) public abstract class AppDatabase extends RoomDatabase { private static AppDatabase INSTANCE; ...
stackoverflow.com
알고봤더니,
리사이클러뷰의 Data구조와 디비 테이블구조가 달라서 그런 거였음
'Android' 카테고리의 다른 글
Android WorkManager (0) | 2019.05.10 |
---|---|
android device monitor deprecated, removed (0) | 2019.05.09 |
only safe ( .) or non-null asserted ( .) calls are allowed on a nullable receiver of type error (0) | 2019.04.11 |
firebase database "setValue at ~ failed: DatabaseError: Permission denied" error (4) | 2019.04.08 |
android firebase 연동 테스트 (0) | 2019.04.04 |