ext {
room_version = '2.4.3'
}
id 'kotlin-kapt'
// ROOM
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
// optional - Kotlin Extensions and Coroutines support for Room
implementation "androidx.room:room-ktx:$room_version"
// coroutine
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
'Android Jetpack' 카테고리의 다른 글
Room Advanced - 1 (XML) (0) | 2023.02.02 |
---|---|
ROOM + Coroutine Flow - 7 (Room + Flow + ListAdapter CRUD) (0) | 2023.01.29 |
ROOM + Coroutine Flow - 4 (Why Room & Coroutine - 2) (0) | 2023.01.28 |
ROOM + Coroutine Flow - 3 (Why Room & Coroutine - 1) (0) | 2023.01.27 |
ROOM + Coroutine Flow - 2 (ListAdapter / DiffUtil Ex) (0) | 2023.01.25 |