mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-21 23:48:00 +00:00
fix: enable native debug symbols for Play Store
Set strip = false in all Rust binding Cargo.toml files so AGP can extract debug symbols before stripping for the final APK. Previously strip = "debuginfo" removed symbols during Rust compilation, leaving nothing for AGP's debugSymbolLevel = FULL to extract.
This commit is contained in:
@@ -15,7 +15,7 @@ hydra-dx-math = { git = "https://github.com/galacticcouncil/HydraDX-node", versi
|
||||
jni = { version = "0.17.0", default-features = false }
|
||||
|
||||
[profile.release]
|
||||
strip = "debuginfo"
|
||||
strip = false
|
||||
lto = true
|
||||
opt-level = "s"
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ frame-metadata = { version = "16.0.0", features = [ "current" ] }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.9", features = [ "derive" ] }
|
||||
|
||||
[profile.release]
|
||||
strip = "debuginfo"
|
||||
strip = false
|
||||
lto = true
|
||||
opt-level = "s"
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ jni = { version = "0.21", default-features = false }
|
||||
zeroize = "1.7"
|
||||
|
||||
[profile.release]
|
||||
strip = "debuginfo"
|
||||
strip = false
|
||||
lto = true
|
||||
opt-level = "s"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user