Skip to content
Merged
Show file tree
Hide file tree
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: 0 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 2 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand All @@ -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" }
Expand Down
Loading