Created
April 22, 2026 14:20
-
-
Save ihor-sviziev/c4d3e087b8555acc0710553692ce6511 to your computer and use it in GitHub Desktop.
Minimal repro: setUpdateRequestHeadersOverride throws InvalidRequestHeadersOverrideException when requestHeaders not in app.config
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
| // app.config.ts | |
| // Minimal reproduction: no requestHeaders declared under updates | |
| export default { | |
| expo: { | |
| name: 'repro', | |
| slug: 'repro', | |
| version: '1.0.0', | |
| runtimeVersion: { policy: 'appVersion' }, | |
| updates: { | |
| url: 'https://u.expo.dev/<your-project-id>', | |
| // requestHeaders intentionally absent — this causes the bug | |
| }, | |
| }, | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment