Channels
Learn how to use channels to manage different release tracks and target updates to specific users.
Questi contenuti non sono ancora disponibili nella tua lingua.
Use Capgo’s Live Updates feature to update the JavaScript bundles of your app remotely, in real-time. Push JS updates directly to your users without going through the app store review process to instantly fix bugs and ship new features.
Capgo’s Live Update system has two key components:
The Capgo SDK, which you install in your app. The SDK checks for available updates and downloads them in the background.
Channels, which let you target updates to specific groups of users. You can use channels to manage different release tracks, such as Production
, Staging
, and Dev
.
When you upload a new JS bundle to Capgo and assign it to a channel, the Capgo SDK in apps configured for that channel will detect the update and download it. The next time the app restarts, the new bundle will be loaded.
To start using Live Updates, follow these steps:
Complete the Capgo Quickstart to set up your app in Capgo and install the Capgo SDK.
In your app code, call CapacitorUpdater.notifyAppReady()
after your app has finished initializing. This tells the Capgo SDK that your app is ready to receive updates.
Build your JS bundle and upload it to Capgo:
Open your app and wait for the update to download. You can check the status with:
Once the update is downloaded, close and reopen your app to load the new bundle.
See the Deploying Live Updates guide for more details.
Channels
Learn how to use channels to manage different release tracks and target updates to specific users.
Rollbacks
Discover how to roll back to a previous JS bundle version if an update causes issues.
Update Behavior
Customize how and when updates are downloaded and applied in your app.
Fast Updates
Learn how to use fast updates to speed up the update process.