1.RoomDB 앱은 DAO를 사용하여 데이터베이스의 데이터를 연결된 데이터 항목 객체의 인스턴스로 검색할 수 있게 한다. Room의 3가지 주요 요소: 데이터베이스 클래스(포인터), 데이터 항목(테이블), 데이터 액세스 객체(메서드) 1) RoomDB 설치 MainActivity에서 Room 을 입력 후 alt+enter 로 add dependecy 한다. build.gradle에서 plugins 에 kotlin-kapt 와 dependencies에 kapt를 추가한다. plugins{ id("kotlin-kapt") } dependencies { implementation("androidx.room:room-runtime:2.6.1") annotationProcessor("androidx.room:r..