0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00

build(deps): revert apache commons-compress to API21-compatible version

This was my fault previously on a dependency updates run, I let it slip
into a version range with a known incompatibility that I even left a comment for!
This commit is contained in:
Mike Hardy 2023-02-05 17:38:18 -05:00 committed by David Allison
parent ffa4c3be55
commit 32b3bf3534

View File

@ -283,7 +283,6 @@ dependencies {
implementation 'androidx.sqlite:sqlite-framework:2.2.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.viewpager2:viewpager2:1.0.0'
// noinspection GradleDependency - pinned at 1.12 until API26 minSdkVersion (File.toPath usage)
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.webkit:webkit:1.5.0'
// Note: the design support library can be quite buggy, so test everything thoroughly before updating it
@ -325,7 +324,7 @@ dependencies {
// io.github.java-diff-utils:java-diff-utils is the natural successor here, but requires API24, #7091
implementation 'org.bitbucket.cowwoc:diff-match-patch:1.2'
// noinspection GradleDependency - commons-compress 1.12 - later versions use `File.toPath`; API26 can remove?
implementation 'org.apache.commons:commons-compress:1.22' // #6419 - handle >2GB apkg files
implementation 'org.apache.commons:commons-compress:1.12' // #6419 - handle >2GB apkg files
implementation 'org.apache.commons:commons-collections4:4.4' // SetUniqueList
implementation 'commons-io:commons-io:2.11.0' // FileUtils.contentEquals
implementation 'net.mikehardy:google-analytics-java7:2.0.13'