Added android room as dependency.
This commit is contained in:
parent
ce6c090d19
commit
1a64788590
|
|
@ -40,4 +40,14 @@ dependencies {
|
||||||
testImplementation(libs.junit)
|
testImplementation(libs.junit)
|
||||||
androidTestImplementation(libs.ext.junit)
|
androidTestImplementation(libs.ext.junit)
|
||||||
androidTestImplementation(libs.espresso.core)
|
androidTestImplementation(libs.espresso.core)
|
||||||
|
|
||||||
|
val room_version = "2.6.1"
|
||||||
|
|
||||||
|
implementation("androidx.room:room-runtime:$room_version")
|
||||||
|
annotationProcessor("androidx.room:room-compiler:$room_version")
|
||||||
|
// optional - RxJava3 support for Room
|
||||||
|
implementation("androidx.room:room-rxjava3:$room_version")
|
||||||
|
|
||||||
|
// optional - Guava support for Room, including Optional and ListenableFuture
|
||||||
|
implementation("androidx.room:room-guava:$room_version")
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue