Updates
Learn how to update your published app.
After you publish your app to the stores, you can release updates to provide your users with new features and bug fixes.
TurboStarter offers two ready-to-use methods for updating your apps; we'll walk through both of them below.
Over-the-air (OTA) updates
Over-the-air (OTA) updates allow you to push updates to your app without requiring users to download a new version from the app store. This powerful feature enables rapid iteration and quick fixes.

TurboStarter integrates with EAS Update to provide you with a seamless experience for managing your app updates. We also shipped a native notification that you can use to notify your users about the new updates available.
Then, to push your update straight to your users, you'll just need to run single command:
eas update --channel [channel-name] --message "[message]"The app will automatically download the update in the background and install it when your users are ready. You can also configure the update channel and message to be displayed to your users.
Feel free to check the official documentation for more information.
Working only for non-native changes
OTA updates are only supported for non-native changes. If you need to update your app with a new native feature (or add a package that uses native dependencies), you'll need to submit a new version to the stores - see below for more details.
Submitting a new version
The most traditional way to update your app is to submit a new version to the stores. This is the most reliable approach, but it can take some time for the new version to be approved and made available to users.
To submit a new version, update the version number in both your package.json file and your app.config.ts file.
{
...
"version": "1.0.0",
"version": "1.0.1",
...
}Next, follow the exact same steps as when you initially published your app. When you submit your app for review, be sure to include release notes for the new version.
How is this guide?
Last updated on