add room as dependency
This commit is contained in:
parent
d432adc142
commit
004824636d
4 changed files with 21 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ plugins {
|
|||
alias(libs.plugins.android.application)
|
||||
alias(libs.plugins.kotlin.android)
|
||||
alias(libs.plugins.compose.compiler)
|
||||
id("com.google.devtools.ksp")
|
||||
}
|
||||
|
||||
android {
|
||||
|
|
@ -70,6 +71,12 @@ dependencies {
|
|||
//Compose navigation
|
||||
implementation(libs.androidx.navigation.compose)
|
||||
|
||||
//room (for AppDatabase)
|
||||
implementation(libs.room.runtime)
|
||||
ksp(libs.androidx.room.compiler)
|
||||
implementation(libs.androidx.room.ktx)
|
||||
|
||||
|
||||
implementation(libs.androidx.core.ktx)
|
||||
implementation(libs.androidx.appcompat)
|
||||
implementation(libs.material)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue