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:
2026-02-24 23:06:31 +03:00
parent 8da8dd0088
commit 49bbb8cf51
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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"