跳过内容

Cordova 更新器入门

GitHub

本指南将指导您添加 @capgo/cordova-updater 到一个Cordova应用中,以便您可以在iOS和Android上接收Capgo实时更新。

  1. 从 npm 安装插件,并传递您的 Capgo 应用程序 ID:

    终端窗口
    cordova plugin add @capgo/cordova-updater --variable APP_ID=YOUR_CAPGO_APP_ID
  2. 可选:在安装时覆盖默认值(同 Capacitor 更新器中的变量):

    终端窗口
    cordova plugin add @capgo/cordova-updater \
    --variable APP_ID=YOUR_CAPGO_APP_ID \
    --variable DEFAULT_CHANNEL=production \
    --variable UPDATE_URL=https://plugin.capgo.app/updates \
    --variable AUTO_UPDATE=atBackground
  3. 更改插件变量后准备本机项目:

    终端窗口
    cordova prepare android ios

JavaScript 使用

JavaScript 使用

之后 deviceready, 插件将作为 cordova.plugins.Updater:

document.addEventListener('deviceready', async () => {
const { Updater } = cordova.plugins;
await Updater.notifyAppReady();
const latest = await Updater.getLatest();
if (latest.url && !latest.error) {
const bundle = await Updater.download({
url: latest.url,
version: latest.version,
checksum: latest.checksum,
});
await Updater.next({ id: bundle.id });
}
});

npm 包含 TypeScript 类型:

import type { UpdaterPlugin } from '@capgo/cordova-updater';
declare const cordova: { plugins: { Updater: UpdaterPlugin } };

平台注意事项

平台注意事项
  • 需要 Cordova Android 13+ 才能将 WebView 从默认方案中服务。 https://localhost/ 方案。
  • 插件注册一个 CordovaPluginPathHandler 来服务下载的包资产。

上传您的第一个包

标题:上传您的第一个包

构建您的 Web 资产,然后使用 Capgo CLI 上传(与 Capacitor 的工作流程相同):

终端窗口
bun run build
bunx @capgo/cli@latest bundle upload --channel=production

下一步

下一步
  • Capacitor — 大多数选项映射到 plugin.xml 阅读
  • 在发布原生插件更改之前 升级到__CAPGO_KEEP_0__ 升级到__CAPGO_KEEP_1__
  • Migrating to Capacitor later? Keep the same Capgo app ID and channels; only the client plugin package changes.