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
4 changes: 2 additions & 2 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ ext {
}

// Replace these versions with the latest available versions of libkiwix and libzim
ext.libkiwix_version = "13.1.0"
ext.libzim_version = "9.1.0"
ext.libkiwix_version = "13.1.0-1"
ext.libzim_version = "9.2.0"

apply from: 'publish.gradle'
android {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/test/test.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void testNonExistant() {
TestArchive archive1 = new TestArchive(zimFile);
fail("ERROR: Archive created with invalid Zim file!");
} catch (Exception e) {
assertEquals("error 2 opening file \"" + zimFile, e.getMessage());
assertEquals("error 2 opening file \"" + zimFile + "\"", e.getMessage());
}
}

Expand Down