Cordova
Copy a setup prompt with the install steps and the full markdown guide for this plugin.
import { LinkCard, CardGrid, Aside } from ‘@astrojs/starlight/components’;
Capgo now ships a first-class Cordova client: @capgo/cordova-updater. It mirrors the @capgo/capacitor-updater JavaScript API and connects to the same Capgo Cloud backend, channels, and bundle signing flow.
Supported stacks
Section titled “Supported stacks”| Client plugin | Platforms |
|---|---|
@capgo/capacitor-updater | Capacitor iOS, Android |
@capgo/cordova-updater | Cordova iOS 7+, Android 13+ |
@capgo/electron-updater | Electron desktop |
Quick install
Section titled “Quick install”cordova plugin add @capgo/cordova-updater --variable APP_ID=YOUR_CAPGO_APP_IDcordova prepare android iosThen call cordova.plugins.Updater.notifyAppReady() after deviceready. See the full guide:
WebView requirements
Section titled “WebView requirements”Cordova Android 13+ and Cordova iOS 7+ serve the app through Cordova’s built-in schemes. The updater hooks those handlers to swap in downloaded bundles.
Do not combine the plugin with cordova-plugin-ionic-webview — it bypasses Cordova scheme routing and OTA bundles will not apply.
Considering migration?
Section titled “Considering migration?”If you plan to move to Capacitor, you can keep the same Capgo app ID, channels, and uploaded bundles. Capgo’s Cordova → Capacitor consulting can help when you need native project migration, but OTA delivery works on Cordova today without waiting for a rewrite.