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:
2026-02-25 23:24:26 +03:00
parent 49bbb8cf51
commit e43bb7a595
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -16,6 +16,7 @@ jni = { version = "0.17.0", default-features = false }
[profile.release]
strip = false
debug = 2
lto = true
opt-level = "s"
@@ -15,6 +15,7 @@ codec = { package = "parity-scale-codec", version = "3.6.9", features = [ "deriv
[profile.release]
strip = false
debug = 2
lto = true
opt-level = "s"
@@ -12,6 +12,7 @@ zeroize = "1.7"
[profile.release]
strip = false
debug = 2
lto = true
opt-level = "s"