Understand what a Despia editor change means
Every change you make in Despia that affects the native binary, including adding an SDK, updating permissions, changing entitlements, and modifying the bundle version, produces a new binary that must go through store review. There is no way to ship a native binary change via OTA. Plan these changes carefully. Once submitted, you are waiting on Apple or Google.Always increment the bundle version
Every time you submit a new binary, increment the bundle version in Despia > Settings > Versioning. This is how your web layer knows which native capabilities are available on a given device and howdespia.bundleNumber gates features correctly.
Use MAJOR.MINOR.PATCH format. Increment PATCH for small native fixes, MINOR for new native integrations, MAJOR for significant platform changes.
Batch native changes where practical
Every binary submission costs review time, typically 24-72 hours on iOS and faster on Android. If you know two native integrations are coming in the same release window, combine them into a single binary submission rather than two sequential ones. This is especially worth doing early in development when you are still adding foundational SDKs.Submit the binary before deploying the web layer that depends on it
This is the most common mistake. The correct deployment order is:
Deploying step 5 before step 4 completes means users on the old binary encounter web code that calls a native API that does not exist on their device.
Use VersionGuard to manage the transition window
After a binary update ships, there is always a period where some users are on the new binary and some are still on the old one. Gate any web UI or logic that depends on the new binary behind a version check so both groups get a coherent experience.Write clear review notes for non-obvious capabilities
Both stores provide a reviewer notes field. Use it whenever your binary includes something that requires context: a permission that is not obviously connected to app functionality, a native SDK that might raise questions, or a capability that requires a test account to exercise. Reviewers have limited time. A brief, clear explanation of why a capability is present is almost always better than leaving it unexplained.Test on a real device before submitting
Simulators and emulators miss issues that real devices catch. Test the new native capability on at least one physical iOS device and one physical Android device before submitting. Test on an older device if your users are likely to run older OS versions.Keep a version history
Track what native capabilities were added in each binary version. This makes it straightforward to know whichmin_version to use in VersionGuard, debug issues reported by users on specific versions, and decide when a legacy code path can safely be removed.
A simple comment in your codebase is enough: