diff --git a/app/build.gradle b/app/build.gradle index f1ceab2d8..e8472a86a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -179,16 +179,6 @@ project.configurations.configureEach { } dependencies { - - // We pick up JNA transitively by way of Glean, which is currently on version 5.14.0. - // However, we need to force version 5.17.0 due to Google Play's 16KB page size requirement. - // JNA 5.15.0+ crashes on Android <7, however, so it can't be bumped in Glean at this time. - // Therefore, manually force the use of version 5.17.0 at the app level since we only support - // running on Android 8+ now anyway. - constraints { - implementation(libs.jna) - } - implementation libs.androidx.activity implementation libs.androidx.annotation implementation libs.androidx.appcompat diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 671535bfc..af0f7eac6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,9 +12,6 @@ kotlinx-coroutines = "1.11.0" # Google material = "1.14.0" -# JNA -jna = "5.18.1" - # AndroidX androidx-activity = "1.13.0" androidx-annotation = "1.10.0" @@ -45,14 +42,14 @@ dependency-analysis = "3.19.2" detekt = "1.23.8" jspecify = "1.0.0" ktfmt = "0.64" -spotless = "8.10.0" +spotless = "8.10.2" # Third Party Testing hamcrest = "1.3" jacoco = "0.8.15" junit = "4.13.2" okhttp = "5.5.0" -okio = "3.18.1" +okio = "3.18.2" [libraries] # Kotlin @@ -62,9 +59,6 @@ kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-cor # Google google-material = { group = "com.google.android.material", name = "material", version.ref = "material" } -# JNA -jna = { group = "net.java.dev.jna", name = "jna", version.ref = "jna" } - # AndroidX androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "androidx-activity" } androidx-annotation = { group = "androidx.annotation", name = "annotation", version.ref = "androidx-annotation" }