Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ class DataStoreTest {
fun dataStore_getLibdigidocppVersion_success() {
val result = dataStore.getLibdigidocppVersion()

assertEquals("4.3.0.40", result)
assertEquals("4.4.0.48", result)
}

@Test
Expand Down
Binary file modified libdigidoc-lib/libs/libdigidocpp.jar
Binary file not shown.
Binary file modified libdigidoc-lib/src/debug/jniLibs/arm64-v8a/libdigidoc_java.so
Binary file not shown.
Binary file not shown.
Binary file modified libdigidoc-lib/src/debug/jniLibs/x86_64/libdigidoc_java.so
Binary file not shown.
Binary file modified libdigidoc-lib/src/main/jniLibs/arm64-v8a/libdigidoc_java.so
Binary file not shown.
Binary file not shown.
Binary file modified libdigidoc-lib/src/main/jniLibs/x86_64/libdigidoc_java.so
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,16 @@ class Initialization
context,
isLoggingEnabled,
)
digidoc.initializeLib(UserAgentUtil.getUserAgent(context), path)

try {
digidoc.initializeLib(UserAgentUtil.getUserAgent(context), path, "")
} catch (e: RuntimeException) {
if (e.message?.startsWith("TSL") == true) {
errorLog(libdigidocInitLogTag, "Unable to initialize TSL: ${e.message}")
} else {
throw e
}
}
isInitialized = true
}

Expand Down
Binary file modified libdigidoc-lib/src/main/res/raw/schema.zip
Binary file not shown.
Loading