mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 04:27:58 +00:00
fix: enable full debug symbols in Rust native bindings
Add debug = 2 to release profile in all three Rust binding crates so AGP can generate native-debug-symbols.zip for Play Store. Also updated RELEASE_GOOGLE_OAUTH_ID secret to correct Android client ID (was incorrectly set to Web client type). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -16,6 +16,7 @@ jni = { version = "0.17.0", default-features = false }
|
|||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
strip = false
|
strip = false
|
||||||
|
debug = 2
|
||||||
lto = true
|
lto = true
|
||||||
opt-level = "s"
|
opt-level = "s"
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ codec = { package = "parity-scale-codec", version = "3.6.9", features = [ "deriv
|
|||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
strip = false
|
strip = false
|
||||||
|
debug = 2
|
||||||
lto = true
|
lto = true
|
||||||
opt-level = "s"
|
opt-level = "s"
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ zeroize = "1.7"
|
|||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
strip = false
|
strip = false
|
||||||
|
debug = 2
|
||||||
lto = true
|
lto = true
|
||||||
opt-level = "s"
|
opt-level = "s"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user