✅ 应用程序已注册
完成注册流程后,您的应用程序已在Capgo中注册,生产频道
复制一个包含安装步骤和此插件的完整Markdown指南的设置提示.
The Capgo CLI 提供了一个交互式引导程序,设置了对您的 Capacitor 应用的实时更新。您将:
预计时间: 10-20 分钟(根据您的互联网速度和构建时间而异)
使用您的 API 密钥运行引导命令:
npx @capgo/cli@latest init [APIKEY]您将看到欢迎消息:
Capgo onboarding 🛫CLI 将带您完成 13 个交互式步骤:
Setup Phase (Steps 1-6):
@capgo/capacitor-updater 插件测试阶段 (Steps 7-12):
Completion (Step 13):
The CLI checks your development environment to ensure you have the necessary tools installed.
检查的内容:
Possible outcomes:
✅ Both environments found:
✅ Xcode detected - iOS development ready✅ Android SDK detected - Android development ready⚠️ No environment found:
⚠️ Xcode not found⚠️ Android SDK not found❌ No development environment detected
📱 To develop mobile apps with Capacitor, you need: • For iOS: Xcode (macOS only) - https://developer.apple.com/xcode/ • For Android: Android Studio - https://developer.android.com/studio可能会问你的问题:
The CLI 将登录到 Capgo 并将您的应用程序添加到您的帐户中。
(spinner) Running: npm @capgo/cli@latest login ***Login Done ✅
❓ Add {appId} in Capgo?如果您的应用程序 ID 已经被占用:
The CLI 将建议替代方案:
❌ App ID "com.example.app" is already taken💡 Here are some suggestions: 1. com.example.app2 2. com.example.app3 3. com.example.app.new 4. com.example.app.app
❓ What would you like to do?您可以选择建议或输入自定义应用程序 ID。
渠道允许您管理不同更新流的应用程序。
❓ Create default channel production for {appId} in Capgo?除非你有特定的频道要求。
(spinner) Running: npm @capgo/cli@latest channel add production {appId} --defaultChannel add Done ✅ (or "Channel already added ✅")复制到剪贴板
会创建一个生产频道并将其设置为默认频道。这是大多数用户的推荐选项。
If you change your mind, run it for yourself with: "npm @capgo/cli@latest channel add production {appId} --default"You’ll need to create and configure channels manually later. Alternatively, you can:
capacitor.config.ts 文件setChannel() 方法动态设置通道CLI 将安装与你的CLI版本兼容的 @capgo/capacitor-updater plugin compatible with your Capacitor version.
❓ Automatic Install "@capgo/capacitor-updater" dependency in {appId}?版本兼容性:
@capgo/capacitor-updater v5@capgo/capacitor-updater v6@capgo/capacitor-updater v7即时更新选项:
安装后,您将被询问:
❓ Do you want to set instant updates in {appId}? Read more: https://capgo.app/docs/live-updates/update-behavior/#applying-updates-immediately如果您选择是:
autoUpdate: 'always' 和 autoSplashscreen: true 将被添加到您的配置中capacitor.config.ts 将自动更新如果您选择否:
capacitor.config.tsCLI 将自动注入所需的 code 到您的主应用程序文件中。
❓ Automatic Add "CapacitorUpdater.notifyAppReady()" code and import in {appId}?What gets added:
import { CapacitorUpdater } from '@capgo/capacitor-updater'
CapacitorUpdater.notifyAppReady()项目类型检测:
plugins/capacitorUpdater.client.ts端到端加密为你的更新添加了额外的安全层。
🔐 End-to-end encryption ✅ Use this for: Banking, healthcare, or apps with legal encryption requirements ⚠️ Note: Makes debugging harder - skip if you don't need it
❓ Enable end-to-end encryption for {appId} updates?如果您启用加密,CLI 将:
在引导过程中选择测试的平台。
📱 Platform selection for onboarding This is just for testing during onboarding - your app will work on all platforms
❓ Which platform do you want to test with during this onboarding? Options: - iOS - AndroidCLI 将会构建您的应用并同步它与 Capacitor。
❓ Automatic build {appId} with "npm run build"?发生了什么:
npx cap sync {platform}如果缺少构建脚本:
您将被询问是否要跳过构建或添加一个构建脚本到您的 package.json.
测试您的应用的初始版本在设备或模拟器上.
❓ Run {appId} on {PLATFORM} device now to test the initial version?如果您选择 是:
(spinner) Running: npx cap run {platform}(device picker appears)App started ✅📱 Your app should now be running on your {platform} device with Capgo integrated🔄 This is your baseline version - we'll create an update next现在是时候测试 Capgo 的更新系统了,通过进行可见的更改。
🎯 Now let's test Capgo by making a visible change and deploying an update!
❓ How would you like to test the update? Options: - Auto: Let Capgo CLI make a visible change for you - Manual: I'll make changes myself自动模式: CLI 将自动修改您的文件以添加一个可见的测试横幅或更改。
手动模式: You make your own changes (e.g., change text, colors, or add elements).
版本管理:
❓ How do you want to handle the version for this update? Options: - Auto: Bump patch version ({currentVersion} → {nextVersion}) - Manual: I'll provide the version number使用修改内容构建:
❓ Build {appId} with changes before uploading?将您的更新应用程序包上传到 Capgo。
❓ Upload the updated {appId} bundle (v{version}) to Capgo?The CLI 运行:
npx @capgo/cli@latest bundle uploadDelta 更新提示(如果启用了即时应用模式):
💡 Instant updates are enabled in your config Delta updates send only changed files instead of the full bundle
❓ Enable delta updates for this upload? (Recommended with instant updates)成功:
✅ Update v{version} uploaded successfully!🎉 Your updated bundle is now available on Capgo看看更新的效果!
🧪 Time to test the Capgo update system!📱 Go to your device where the app is running为了即时更新:
🔄 IMPORTANT: Background your app (swipe up/press home button) and then reopen it⏱️ The update should be downloaded and applied automatically为了标准更新:
📱 With standard updates, you will need to: 1. Background the app (swipe up/press home button) to start download 2. Wait a few seconds for download to complete 3. Background and foreground again to see the update监控日志:
❓ Monitor Capgo logs to verify the update worked?如果您选择 是,您将看到设备上的实时日志,显示更新过程。
Welcome onboard ✈️!恭喜!您成功地为应用程序设置了Capgo实时更新。
After completing the onboarding, you have:
✅ 应用程序已注册
完成注册流程后,您的应用程序已在Capgo中注册,生产频道
✅ 插件已安装
已安装并配置了Capacitor更新器插件
✅ Code已集成
已将code集成到您的应用程序中
✅ 更新已测试
您已成功部署并接收到实时更新
对于后续更新,请使用:
npm run buildnpx @capgo/cli@latest bundle upload --channel=production更多部署选项,请参见 实时更新部署.
如果您退出入门流程,可以随时恢复:
npx @capgo/cli@latest init [APIKEY]您会看到:
You have already got to the step {stepNumber}/13 in the previous session❓ Would you like to continue from where you left off?问题: 既没有检测到 Xcode 也没有检测到 Android SDK。
解决方案:
问题: 您的应用 ID 已经注册了。
解决方案: 选择建议的替代方案或在反向域名表示法中输入自定义应用 ID。
问题: 没有找到 package.json.
解决方案: 在你的 package.json:
{ "scripts": { "build": "your-build-command" }}问题: CLI无法自动注入code。
解决方案: 手动将code添加到你的主文件中:
import { CapacitorUpdater } from '@capgo/capacitor-updater'
CapacitorUpdater.notifyAppReady()问题: 您的 Capacitor 版本低于 v5。
解决方案: 升级 Capacitor 至 v5 或更高版本:
现在您已经完成了入门,探索这些主题:
发布更新
了解如何从Capgo控制台发布更新
更新类型
OTA更新类型参考:应用时间、延迟条件、版本阻塞和交付
CI/CD集成
通过CI/CD自动化更新部署
频道
使用频道管理多个更新流
加密
通过端到端加密保护更新
更新行为
自定义更新何时和如何应用(直接、差异等)
如果您在入门过程中遇到问题:
如果您正在使用 CLI入门指南 来规划API仪表板和API操作,连接它与 API概览 了解API概览中的实施细节在 介绍 了解介绍中的实施细节在 API密钥 了解API密钥中的实施细节在 设备 了解设备中的实施细节在 Bundles for the implementation detail in Bundles.