Merge pull request #3867 from kiwix/use_java_libkiwix_2.2.0

Use java-libkiwix `2.2.0`
This commit is contained in:
Kelson 2024-06-07 10:26:45 +02:00 committed by GitHub
commit 42f20ea8da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -86,7 +86,7 @@ object Versions {
const val core_ktx: String = "1.9.0"
const val libkiwix: String = "2.1.1"
const val libkiwix: String = "2.2.0"
const val material: String = "1.8.0"

View File

@ -56,7 +56,10 @@ dependencies {
// Get kiwixlib online if it is not populated locally
if (!shouldUseLocalVersion()) {
api(Libs.libkiwix)
api(Libs.libkiwix) {
// TODO Should be removed after we upgrade to the SDK 34
exclude("org.jetbrains.kotlin", "kotlin-stdlib")
}
} else {
implementation("com.getkeepsafe.relinker:relinker:1.4.5")
api(fileTree(mapOf("include" to "*.aar", "dir" to "libs")))