From 987116e8777447c963d0c0e9e081640c6f204ee3 Mon Sep 17 00:00:00 2001 From: peet Date: Sun, 16 Jan 2022 17:41:05 +0100 Subject: [PATCH] update room version --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index d43a0c5..beae64d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -58,7 +58,7 @@ dependencies { } dependencies { - def room_version = '2.4.0' + def room_version = "2.4.1" implementation "androidx.room:room-runtime:$room_version" annotationProcessor "androidx.room:room-compiler:$room_version" @@ -76,7 +76,7 @@ dependencies { testImplementation "androidx.room:room-testing:$room_version" // optional - Paging 3 Integration - implementation 'androidx.room:room-paging:2.4.0' + implementation "androidx.room:room-paging:$room_version" } dependencies {