Promote: staging -> develop#719
Merged
Merged
Conversation
fix(auth): build sign-in message locally instead of fetching it
) ## Why Google Play flags the app bundle: its native code is not 16 KB page aligned, so it cannot run on Android 15+ devices that use 16 KB memory pages. The only offending library was `libgojni.so` (the gomobile-built Go binding shipped by `bitbox_flutter`) — its arm64-v8a `PT_LOAD` segments were `p_align = 0x1000` (4 KB). Every other native lib in the bundle (libflutter, libapp, libsqlite3mc, libtensorflowlite_jni, …) is already ≥ 16 KB. ## What Bump `bitbox_flutter` `v0.0.8 → v0.0.9`. v0.0.9 rebuilds the gomobile binding with `-extldflags=-Wl,-z,max-page-size=16384`, producing 16 KB-aligned `.so` libraries. See DFXswiss/bitbox_flutter#30. `pubspec.lock` updated to the v0.0.9 commit (`6172a2e`); no other lock entries change. ## Verification - `bitbox_flutter` v0.0.9 `jni/arm64-v8a/libgojni.so` + `x86_64`: `p_align` `0x1000` → **`0x4000`** (16 KB) - API-safe bump: javap public signatures (146 lines) and exported dynamic symbols (284) are **byte-identical** between v0.0.8 and v0.0.9 — only ELF alignment changed, so no source-level impact - `bitbox_flutter` PR gate green (go vet/test, dart format, analyze, flutter test) ## Test plan - [ ] App CI green (Analyze & Test, Visual Regression, Coverage Floor Gate) - [ ] Release build: confirm `lib/arm64-v8a/libgojni.so` reports 16 KB alignment in the final AAB and the Play Console warning clears
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automatic Staging PR
This PR was automatically created after changes were pushed to staging.
Commits: 1 new commit(s)
Checklist