fix(expo-example): add EAS local build config and fix HMR bug with secureStoreStamper#141
Merged
andrascodes merged 1 commit intoMay 14, 2026
Conversation
This was referenced Apr 29, 2026
This was referenced Apr 29, 2026
038a77f to
4e1ddf4
Compare
3d0a9db to
a3664fc
Compare
038a77f to
4e1ddf4
Compare
a3664fc to
d49848a
Compare
b16289e to
f85ba70
Compare
31e2f8f to
fe9ea1e
Compare
4cfdbeb to
7419e0d
Compare
fe9ea1e to
5818e6e
Compare
5818e6e to
7165b6b
Compare
7419e0d to
0d1ee27
Compare
7165b6b to
e98b159
Compare
0d1ee27 to
cae5acb
Compare
e98b159 to
c466a44
Compare
cae5acb to
1e2af0c
Compare
OmarBasem
approved these changes
May 6, 2026
82ba22d to
459c597
Compare
629cb2c to
246a94b
Compare
246a94b to
ff5780b
Compare
459c597 to
32d677b
Compare
ff5780b to
290a894
Compare
32d677b to
bc64efe
Compare
bc64efe to
dd6f516
Compare
290a894 to
1942f3e
Compare
1942f3e to
a43eaaf
Compare
dd6f516 to
a36a497
Compare
a36a497 to
c91dd13
Compare
a43eaaf to
2dfe3b7
Compare
c91dd13 to
1c64fca
Compare
2dfe3b7 to
2e098e0
Compare
2e098e0 to
b4c71ef
Compare
1c64fca to
34f2eee
Compare
b4c71ef to
a8d9604
Compare
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.
This PR is part of a stack created with Aviator.
mainI discovered a bug when testing OTP. If I backgrounded the app to copy the code from the email and then went back to the app to verify the code it caused an app refresh. This only appeared in dev mode as I tested with EAS CLI using a local APK build too (package.json and eas.json change are for the local APK build).
The cause is a dynamic import in Turnkey which gets bundled only at the first stamp with the
secureStoreStamper. So the fix is essentially a "warmup" to trigger a dummy stamp on initialization. This fix only runs in DEV mode.