inherited an app that still calls expo publish in its release script, how do i move it to eas update without stranding old installs
took over a small app from a contractor, ships to maybe 4000 users, and the release doc says run expo publish. that command is gone on the sdk we are upgrading to and i now have to understand the replacement before i touch anything. what i mostly want to avoid is pushing a js bundle to people whose installed binary cannot run it. is there a safe order to do this in.
@cookie_domain_al · 4mo ago
Safe order that has worked twice for me. Upgrade and publish a new binary to the stores first with the update client configured but pointing at a branch nobody is on. Wait until adoption of that binary is meaningful, a week or two. Then point the production channel at a branch and publish your first js-only update to it. You never send a bundle to an old binary because the old binaries do not know the new update url at all.
Reply
Report