The heavy setup is already behind you. Your developer accounts are linked, bundle IDs are registered, and the app records exist, so an update is a version bump, a publish, and a submission.
What needs a new binary
Most apps publish a new binary once or twice a year. Everything else is a web deploy.
Publishing the update
1
Raise the version
Open Settings, Configuration, Versioning and press Big, Medium, or Small. The version has to be higher than every version the stores have already seen, including anything in review or rejected.
2
Open Publish and pick a platform
Select iOS or Android. Each platform publishes on its own run, so an update going to both stores means two publishes.
3
Press Publish Project
Despia builds the app on its own infrastructure, handling code signing and provisioning. Builds usually take 15 to 30 minutes.
4
Wait for the build to reach the store
On iOS the signed build is uploaded to App Store Connect automatically and appears in TestFlight after 10 to 30 minutes of processing. On Android the AAB is uploaded to your internal testing track automatically, and an APK is produced alongside it for direct device testing.
5
Submit for review
In App Store Connect, create the new version, attach the processed build, and add What’s New text. In the Play Console, promote the internal testing release to production and add release notes. Then submit.
When the Android upload does not happen automatically
Automatic delivery to internal testing depends on Despia’s service account having access to your app in the Play Console. Not every account type supports automated uploads, and the most common cause of a build that never appears is that the service account email was never invited to the app as an admin. Nothing is lost when this happens. The AAB is produced either way and is available for download, so there are two ways forward. Invite the service account and publish again. Invite the service account email to the app with admin access, then publish a new build. Every build after that uploads on its own. Upload the AAB yourself. Download the AAB from Despia and add it to the internal testing track in the Play Console by hand. This is the faster route when you only need this one release out, since it skips a second build entirely. Neither option changes the binary. The AAB is the same file whichever way it reaches the Play Console.Deploy the web layer after the binary is approved, not before
This is the ordering mistake that breaks apps in production. Web code that calls a capability the installed binary does not have will fail on every user who has not updated yet.1
Make the native change in Despia
2
Raise the version
3
Publish and submit
4
Wait for approval
5
Deploy the web layer
6
Gate the new UI behind a version check
Batch native changes
Every publish costs a build and every submission costs review time. If two native changes are landing in the same release window, put them in one binary rather than two sequential submissions. This matters most early on, while you are still adding foundational capabilities. Over-the-air deploys have no such cost. There is no reason to batch web changes.Rolling out gradually
Both stores can hold an approved update back from part of your userbase. Apple’s phased release spreads it over seven days and can be paused, keeping everyone else on the previous version. Google’s staged rollout runs on percentages you raise yourself and can be halted outright. Worth using on any release touching purchases, authentication, or push. A wave of one-star reviews after an update is usually a regression, so check crash reports and your recent web deploys before assuming otherwise.When an update is rejected
The version already live is unaffected. Users keep running the approved binary and nothing is taken down while you fix the problem. The rejected version number is spent, so raise the version again, publish, and resubmit. Use the reviewer notes field to explain anything non-obvious in the build, particularly a permission that is not visibly tied to app functionality or a capability that needs a test account to exercise. Most rejections come down to setup rather than the runtime.Resources
Versioning
Set and raise the app version
Editor updates
Native change and rebuild practices
NPM Package
despia-native