id 'kotlin-kapt'
// ROOM
implementation "androidx.room:room-runtime:2.5.0"
kapt "androidx.room:room-compiler:2.5.0"
// optional - Kotlin Extensions and Coroutines support for Room
implementation "androidx.room:room-ktx:2.5.0"
// viewModel coroutine
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
// byViewModels
implementation 'androidx.activity:activity-ktx:1.6.1'
// liveData
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.5.1"
'Android Jetpack' 카테고리의 다른 글
Room Advanced - 4 (Create / Read) (0) | 2023.02.02 |
---|---|
Room Advanced - 3 (구조) (0) | 2023.02.02 |
Room Advanced - 1 (XML) (0) | 2023.02.02 |
ROOM + Coroutine Flow - 7 (Room + Flow + ListAdapter CRUD) (0) | 2023.01.29 |
ROOM + Coroutine Flow - 6 (Room + Flow + ListAdapter) (0) | 2023.01.28 |