buildscript {
ext {
room_version = '2.5.0'
}
}
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 - 2 (DB) (0) | 2023.02.02 |
---|---|
Room Advanced - 1 (XML) (0) | 2023.02.02 |
ROOM + Coroutine Flow - 6 (Room + Flow + ListAdapter) (0) | 2023.01.28 |
ROOM + Coroutine Flow - 4 (Why Room & Coroutine - 2) (0) | 2023.01.28 |
ROOM + Coroutine Flow - 3 (Why Room & Coroutine - 1) (0) | 2023.01.27 |