https://youtu.be/jXzVrK4DXwU 1. 라이브러리 1 2 3 4 5 dependencies { ... implementation 'androidx.room:room-runtime:2.2.6' annotationProcessor 'androidx.room:room-compiler:2.2.6' } Colored by Color Scripter cs 위와 같이 room에 대한 라이브러리를 추가해준다. 사실 Alt + Enter를 통해서 자동으로 연결할 수도 있다. 2. User.java (Entity) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 package com.example.roomdatabaseexample; import androidx.room.Ent..