Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions FlowCrypt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ val uiTestsImplementation by configurations.named("uiTestsImplementation")
dependencies {
ksp("com.github.bumptech.glide:ksp:5.0.5")
ksp("androidx.annotation:annotation:1.9.1")
ksp("androidx.room:room-compiler:2.8.1")
ksp("androidx.room:room-compiler:2.8.2")
//ACRA needs the following dependency to use a custom report sender

ksp("dev.zacsweers.autoservice:auto-service-ksp:1.2.0")
Expand All @@ -436,7 +436,7 @@ dependencies {
androidTestImplementation("androidx.test:rules:1.7.0")
androidTestImplementation("androidx.test.ext:junit-ktx:1.3.0")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
androidTestImplementation("androidx.room:room-testing:2.8.1")
androidTestImplementation("androidx.room:room-testing:2.8.2")
androidTestImplementation("androidx.arch.core:core-testing:2.2.0")
androidTestImplementation("androidx.work:work-testing:2.10.5")
androidTestImplementation("com.squareup.okhttp3:mockwebserver:5.2.1")
Expand All @@ -451,7 +451,7 @@ dependencies {
//we need it to test Parcelable implementation
testImplementation("org.jetbrains.kotlin:kotlin-reflect:2.2.20")
testImplementation("junit:junit:4.13.2")
testImplementation("androidx.room:room-testing:2.8.1")
testImplementation("androidx.room:room-testing:2.8.2")
testImplementation("io.github.classgraph:classgraph:4.8.181")

implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
Expand All @@ -471,8 +471,8 @@ dependencies {
implementation("androidx.lifecycle:lifecycle-process:2.9.4")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.9.4")
implementation("androidx.lifecycle:lifecycle-service:2.9.4")
implementation("androidx.room:room-runtime:2.8.1")
implementation("androidx.room:room-ktx:2.8.1")
implementation("androidx.room:room-runtime:2.8.2")
implementation("androidx.room:room-ktx:2.8.2")
//we disabled warnings about paging-runtime-ktx because a newer version doesn't fit our needs
//noinspection GradleDependency
implementation("androidx.paging:paging-runtime-ktx:2.1.2")
Expand Down