mirror of
https://github.com/kiwix/java-libkiwix.git
synced 2025-08-04 03:26:08 -04:00
commit
15e2d09712
@ -1,3 +1,6 @@
|
||||
2.2.1
|
||||
* NEW: Use libzim 9.2.2 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/108)
|
||||
|
||||
2.2.0
|
||||
* NEW: Use libzim 9.2.1-1 and libkiwix 13.1.0-3 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/98)
|
||||
* NEW: Added support for SDK 34 (@MohitMaliFtechiz https://github.com/kiwix/java-libkiwix/pull/97)
|
||||
|
@ -19,12 +19,12 @@ ext["sonatypeStagingProfileId"] = properties.getProperty("sonatypeStagingProfile
|
||||
ext {
|
||||
set("GROUP_ID", "org.kiwix")
|
||||
set("ARTIFACT_ID", "libkiwix")
|
||||
set("VERSION", "2.2.0")
|
||||
set("VERSION", "2.2.1")
|
||||
}
|
||||
|
||||
// Replace these versions with the latest available versions of libkiwix and libzim
|
||||
ext.libkiwix_version = "13.1.0-3"
|
||||
ext.libzim_version = "9.2.1-1"
|
||||
ext.libkiwix_version = "13.1.0-4"
|
||||
ext.libzim_version = "9.2.2"
|
||||
|
||||
apply from: 'publish.gradle'
|
||||
android {
|
||||
@ -75,7 +75,7 @@ android {
|
||||
abortOnError true
|
||||
checkAllWarnings = true
|
||||
warningsAsErrors true
|
||||
disable("GradleDependency", "UnknownNullness")
|
||||
disable("GradleDependency", "UnknownNullness", "OldTargetApi")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -236,7 +236,7 @@ public class test {
|
||||
TestArchive archive1 = new TestArchive(zimFile);
|
||||
fail("ERROR: Archive created with invalid ZIM file!");
|
||||
} catch (Exception e) {
|
||||
assertEquals("Error opening as a split file: " + zimFile, e.getMessage());
|
||||
assertEquals("Error opening ZIM file: " + zimFile, e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user