Kotlin Room Database in android studio | Part - 2

Опубликовано: 05 Октябрь 2024
на канале: BM IT LTD
187
5

#Kotlin #Room_database_bangla #RoomDatabase

In this video, you will learn another Architecture component i.e. Room Database. What is Room, how to use it and why it is better than SQLite and the advantages of using it. After the graphical representation, you will see the demo for everything included.

First video Two link :   • Kotlin Room Database in bangla tutori...  


dependencies {

//Room database
def room_version = "2.2.5"
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"

}

plugins {
id 'kotlin-kapt'
}

Thank you