Android Jetpack

ROOM + Coroutine Flow - 6 (Room + Flow + ListAdapter)

----___<<<<< 2023. 1. 28. 19:48

 

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"