이력서랑 포트폴리오, 지원서, 자소서 준비하다보니 이걸 건드릴 시간이 없었다... ✔ 요약RoomDatabase 생성 및 Hilt 적용데이터 불러올 때 Paging3와 StateFlow 사용 1. RoomDatabase 생성plugins { ... id("kotlin-kapt")}dependencies { ... implementation("androidx.room:room-runtime:2.6.1") implementation("androidx.room:room-paging:2.6.1") kapt("androidx.room:room-compiler:2.6.1")} 시작은 Data 모듈에서 Entity를 만드는 걸로 시작했다.@Entity 어노테이션과 @PrimaryKey..