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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitkitcore"
version = "0.1.70"
version = "0.1.72"
edition = "2021"

[lib]
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

let tag = "v0.1.70"
let checksum = "3717f97d4c184509f8093a87f6d8a5c4085d771264d789d1102ab6321fbb3ed6"
let tag = "v0.1.72"
Comment thread
ovitrif marked this conversation as resolved.
let checksum = "0fc1897b87ef3224abcec3b119d02c4a93966dd04c0a7c938588d4c5e98fc013"
let url = "https://github.com/synonymdev/bitkit-core/releases/download/\(tag)/BitkitCore.xcframework.zip"

let package = Package(
Expand Down
2 changes: 1 addition & 1 deletion bindings/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
group=com.synonym
version=0.1.70
version=0.1.72
6 changes: 3 additions & 3 deletions bindings/android/lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ fun String.parseElfAlignment(): Long {

val validateReleaseNativeLibraries by tasks.registering {
group = "verification"
description = "Validates release JNI libraries keep debug metadata and 16 KB LOAD alignment."
description = "Validates release JNI libraries keep full DWARF metadata and 16 KB LOAD alignment."

doLast {
val readelf = findReadelf()
Expand All @@ -134,8 +134,8 @@ val validateReleaseNativeLibraries by tasks.registering {
}

val (sectionsExit, sections) = runReadelf(readelf, "-S", lib.absolutePath)
if (sectionsExit != 0 || !Regex("""\.(symtab|debug_|gnu_debugdata)""").containsMatchIn(sections)) {
throw GradleException("Android native library has no usable debug metadata: '${lib.path}'")
if (sectionsExit != 0 || !Regex("""\.debug_info""").containsMatchIn(sections)) {
throw GradleException("Android native library has no .debug_info DWARF metadata: '${lib.path}'")
}

val wideHeaders = runReadelf(readelf, "-W", "-l", lib.absolutePath)
Expand Down
Loading
Loading