Skip to content

Commit cda3dc5

Browse files
Update Room to 2.5.0
1 parent 6118e30 commit cda3dc5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ project.ext {
3131
libraryVersion = "4.5.3"
3232
}
3333
androidXSQLiteVersion = "2.2.0"
34+
roomVersion = "2.5.0"
3435
androidNdkVersion = "23.0.7599858"
3536
mavenLocalRepositoryPrefix = "file://"
3637
if(project.hasProperty('publishLocal') && publishLocal.toBoolean()){

sqlcipher/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ dependencies {
5656
implementation "androidx.sqlite:sqlite:${rootProject.ext.androidXSQLiteVersion}"
5757

5858
// Needed for the Support API in tests
59-
androidTestImplementation 'androidx.room:room-common:2.3.0'
60-
androidTestImplementation 'androidx.room:room-runtime:2.3.0'
61-
androidTestAnnotationProcessor 'androidx.room:room-compiler:2.3.0'
59+
androidTestImplementation "androidx.room:room-common:${rootProject.ext.roomVersion}"
60+
androidTestImplementation "androidx.room:room-runtime:${rootProject.ext.roomVersion}"
61+
androidTestAnnotationProcessor "androidx.room:room-compiler:${rootProject.ext.roomVersion}"
6262

6363
// Needed for supporting tests
6464
androidTestImplementation 'androidx.test.ext:junit:1.1.3'

0 commit comments

Comments
 (0)