Skip to content
Snippets Groups Projects
Commit 7bc91038 authored by RyanSC06's avatar RyanSC06
Browse files

fix: dependencies for room

parent cba88791
Branches
Tags
No related merge requests found
plugins {
alias(libs.plugins.androidApplication)
alias(libs.plugins.jetbrainsKotlinAndroid)
kotlin("kapt") version "1.7.21"
}
android {
......@@ -61,4 +62,9 @@ dependencies {
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
implementation("androidx.room:room-runtime:2.4.0")
kapt("androidx.room:room-compiler:2.4.0")
implementation("androidx.room:room-ktx:2.4.0")
testImplementation("androidx.room:room-testing:2.4.0")
}
\ No newline at end of file
......@@ -2,4 +2,5 @@
plugins {
alias(libs.plugins.androidApplication) apply false
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
kotlin("kapt") version "1.7.21"
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment