Android Jetpack

ROOM + Coroutine Flow - 7 (Room + Flow + ListAdapter CRUD)

----___<<<<< 2023. 1. 29. 00:37

 

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"