Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Bump Jackson to 2.13.5
2.13.5 was actually the last version with minSdk < 26 support, not 2.13.1. We just reverted from 2.15 which did crash but using the last release of 2.13 shouldn't crash.
  • Loading branch information
Luna712 authored Nov 2, 2025
commit f51dd94f59f829c55ba35a51f6418d0a58d5e5ef
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ dependencies {
} // To Fix SSL Fu*kery on Android 9
implementation(libs.jackson.module.kotlin) {
version {
strictly("2.13.1")
strictly("2.13.5")
}
because("Don't Bump Jackson above 2.13.1, Crashes on Android TV's and FireSticks that have Min API Level 25 or Less.")
because("Don't Bump Jackson above 2.13.5, Crashes on Android TV's and FireSticks that have Min API Level 25 or Less.")
} // JSON Parser

// Torrent Support
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dokkaGradlePlugin = "2.0.0"
espressoCore = "3.7.0"
fuzzywuzzy = "1.4.0"
gradle = "8.13.0"
jacksonModuleKotlin = "2.13.1"
jacksonModuleKotlin = "2.13.5"
json = "20250517"
junit = "4.13.2"
junitKtx = "1.3.0"
Expand Down