---
description: Set up Capawesome Cloud Live Updates in your Capacitor 6 app. Install the SDK, create a channel, and ship over-the-air updates in minutes.
title: Getting Started with Live Updates (Capacitor 6) - Capawesome
image: https://capawesome.io/docs/assets/images/social/cloud/live-updates/setup-capacitor-6.png
---

[ Skip to content](#getting-started) 

[ 🎉 Introducing **Capawesome Platform** — one platform for Live Updates, Native Builds, App Store Publishing, and Insider SDKs.](https://capawesome.io) 

* [  Formbricks ](/docs/plugins/formbricks/)
* [  Geocoder ](/docs/plugins/geocoder/)
* [  Google Sign-In ](/docs/plugins/google-sign-in/)
* [  libSQL ](/docs/plugins/libsql/)
* [  Live Update ](/docs/plugins/live-update/)
* [  Managed Configurations ](/docs/plugins/managed-configurations/)
* [  Media Session ](/docs/plugins/media-session/)
* [  ML Kit ](/docs/plugins/mlkit/)
* [  NFC ](/docs/plugins/nfc/)
* [  OAuth ](/docs/plugins/oauth/)
* [  Pedometer ](/docs/plugins/pedometer/)
* [  Photo Editor ](/docs/plugins/photo-editor/)
* [  PostHog ](/docs/plugins/posthog/)
* [  Printer ](/docs/plugins/printer/)
* [  Purchases ](/docs/plugins/purchases/)
* [  RealtimeKit ](/docs/plugins/realtimekit/)
* [  Screen Orientation ](/docs/plugins/screen-orientation/)
* [  Screenshot ](/docs/plugins/screenshot/)
* [  Secure Preferences ](/docs/plugins/secure-preferences/)
* [  Speech Recognition ](/docs/plugins/speech-recognition/)
* [  Speech Synthesis ](/docs/plugins/speech-synthesis/)
* [  Share Target ](/docs/plugins/share-target/)
* [  Square Mobile Payments ](/docs/plugins/square-mobile-payments/)
* [  SQLite ](/docs/plugins/sqlite/)
* [  Superwall ](/docs/plugins/superwall/)
* [  Torch ](/docs/plugins/torch/)
* [  Wifi ](/docs/plugins/wifi/)
* [  Zip ](/docs/plugins/zip/)
* [  Cloud ](/docs/cloud/)
* [  Live Updates ](/docs/cloud/live-updates/)
* Advanced
* Integrations
* [  Native Builds ](/docs/cloud/native-builds/)
* [  Configuration ](/docs/cloud/native-builds/configuration/)
* [  Environments ](/docs/cloud/native-builds/environments/)
* Guides
* [  Sample Projects ](/docs/cloud/native-builds/sample-projects/)
* [  Troubleshooting ](/docs/cloud/native-builds/troubleshooting/)
* [  Automations ](/docs/cloud/automations/)
* [  Assist ](/docs/cloud/assist/)
* Account
* Organizations
* [  Organization and User Management ](/docs/cloud/organizations/memberships/)
* [  Single Sign-On (SSO) ](/docs/cloud/organizations/sso/)
* [  Teams ](/docs/cloud/organizations/teams/)
* [  Two-Factor Authentication ](/docs/cloud/organizations/two-factor-authentication/)
* [  Integrations ](/docs/cloud/integrations/)
* [  License Keys ](/docs/cloud/license-keys/)
* [  Webhooks ](/docs/cloud/webhooks/)
* [  Pricing ](https://capawesome.io/pricing/)
* [  FAQ ](/docs/cloud/faq/)
* [  Support ](/docs/cloud/support/)
* [  Contributing ](/docs/contributing/)
* [  LLMs ](/docs/llms/)
* [  Insiders ](/docs/insiders/)
* [  License ](https://capawesome.io/legal/eula/)
* [  Support ](/docs/insiders/support/)
* [  FAQ ](/docs/insiders/faq/)
* [  Blog ](/blog/)
* Categories

# Getting Started[¶](#getting-started "Permanent link")

In this guide, you will learn how to set up Capawesome Cloud Live Updates in your Capacitor 6 app.

## Prerequisites[¶](#prerequisites "Permanent link")

Before you begin, ensure you have:

* A [Capawesome Cloud](https://console.cloud.capawesome.io) account and organization.
* A Capacitor 6 app project on your local machine.
* The latest version of the [Capawesome CLI](/docs/cloud/cli/) installed.

## Step 1: Create an App[¶](#step-1-create-an-app "Permanent link")

In order for your app to identify itself to Capawesome Cloud, you must first create an app in Capawesome Cloud. If you have already created an app, you can **skip this step** and proceed to Step 2.

CLIConsole

To create an app using the [Capawesome CLI](/docs/cloud/cli/), use the [apps:create](/docs/cloud/cli/#appscreate) command:

`[](#%5F%5Fcodelineno-0-1)npx @capawesome/cli apps:create
`

You will be prompted to select the organization you want to create the app in and to provide a name for the app. The CLI will then create the app and display the app ID.

To create an app using the [Capawesome Cloud Console](https://console.cloud.capawesome.io/organizations/%5F/apps), select the organization you want to create the app in and click on the "Create App" button.

Provide a name for the app and click on the "Create" button.

Make sure to copy the app ID, as you will need it in the next step.

## Step 2: Install SDK[¶](#step-2-install-sdk "Permanent link")

Within your Capacitor app project, install the [Capacitor Live Update](/docs/plugins/live-update/) plugin:

`[](#%5F%5Fcodelineno-1-1)npm install @capawesome/capacitor-live-update@^6.0.0
`

Next, configure the plugin by pasting the app ID from Step 1 in the [Capacitor configuration file](https://capacitorjs.com/docs/config) of your project:

TypeScriptJSON

capacitor.config.ts

`[](#%5F%5Fcodelineno-2-1)import { CapacitorConfig } from "@capacitor/cli";
[](#%5F%5Fcodelineno-2-2)
[](#%5F%5Fcodelineno-2-3)const config: CapacitorConfig = {
[](#%5F%5Fcodelineno-2-4)  plugins: {
[](#%5F%5Fcodelineno-2-5)    LiveUpdate: {
[](#%5F%5Fcodelineno-2-6)      appId: "00000000-0000-0000-0000-000000000000",
[](#%5F%5Fcodelineno-2-7)    },
[](#%5F%5Fcodelineno-2-8)  },
[](#%5F%5Fcodelineno-2-9)};
[](#%5F%5Fcodelineno-2-10)
[](#%5F%5Fcodelineno-2-11)export default config;
`

capacitor.config.json

`[](#%5F%5Fcodelineno-3-1){
[](#%5F%5Fcodelineno-3-2)  "plugins": {
[](#%5F%5Fcodelineno-3-3)    "LiveUpdate": {
[](#%5F%5Fcodelineno-3-4)      "appId": "00000000-0000-0000-0000-000000000000"
[](#%5F%5Fcodelineno-3-5)    }
[](#%5F%5Fcodelineno-3-6)  }
[](#%5F%5Fcodelineno-3-7)}
`

Now sync your Capacitor project using the [Capacitor CLI](https://capacitorjs.com/docs/cli) to register the plugin and apply the configuration:

`[](#%5F%5Fcodelineno-4-1)npx cap sync
`

Since Capacitor 6 does not support automatic update strategies, you need to manually implement the update logic using the [sync(...)](/docs/plugins/live-update/#sync) method. Here's an example using the "Always Latest" update strategy:

`[](#%5F%5Fcodelineno-5-1)import { App } from "@capacitor/app";
[](#%5F%5Fcodelineno-5-2)import { LiveUpdate } from "@capawesome/capacitor-live-update";
[](#%5F%5Fcodelineno-5-3)
[](#%5F%5Fcodelineno-5-4)// Notify the plugin that the app is ready to use and
[](#%5F%5Fcodelineno-5-5)// no rollback is needed - must be called as soon as possible
[](#%5F%5Fcodelineno-5-6)void LiveUpdate.ready();
[](#%5F%5Fcodelineno-5-7)
[](#%5F%5Fcodelineno-5-8)App.addListener("resume", async () => {
[](#%5F%5Fcodelineno-5-9)  const { nextBundleId } = await LiveUpdate.sync();
[](#%5F%5Fcodelineno-5-10)  if (nextBundleId) {
[](#%5F%5Fcodelineno-5-11)    // Ask the user if they want to apply the update immediately
[](#%5F%5Fcodelineno-5-12)    const shouldReload = confirm("A new update is available. Would you like to install it?");
[](#%5F%5Fcodelineno-5-13)    if (shouldReload) {
[](#%5F%5Fcodelineno-5-14)      await LiveUpdate.reload();
[](#%5F%5Fcodelineno-5-15)    }
[](#%5F%5Fcodelineno-5-16)  }
[](#%5F%5Fcodelineno-5-17)});
`

This code checks for updates every time the app resumes from the background. If an update is available, it prompts the user to install it immediately.

## Step 3: Publish First Update[¶](#step-3-publish-first-update "Permanent link")

To publish your first live update, you need to deploy a build to a live update channel in Capawesome Cloud. This can be done easily using the [Capawesome CLI](/docs/cloud/cli/).

First, build the web assets of your Capacitor app:

`[](#%5F%5Fcodelineno-6-1)npm run build
`

Then, upload those web assets as a live update bundle to Capawesome Cloud using the following command:

`[](#%5F%5Fcodelineno-7-1)npx @capawesome/cli apps:liveupdates:upload
`

This command will ask you to enter the path to your web assets directory (e.g., `www` or `dist`) and the app you want to upload the bundle to. After the upload is complete, the bundle will be instantly available to your users. Navigate to the [Deployments](https://console.cloud.capawesome.io/apps/%5F/deployments) page in the Capawesome Cloud Console to see the details of your deployment.

Congratulations! You have successfully set up Capawesome Cloud Live Updates in your Capacitor app. 🎉

## Step 4: Test Your Setup[¶](#step-4-test-your-setup "Permanent link")

To verify that everything is working correctly, you can make a small change to your web assets (e.g., change some text in your HTML or CSS files), build the web assets again, and upload a new live update bundle using the same command as before:

`[](#%5F%5Fcodelineno-8-1)npx @capawesome/cli apps:liveupdates:upload
`

After uploading the new bundle, restart your app on a device or emulator. When the app resumes, it should check for updates, prompt you to install the new update, and apply it if you confirm.

Debugging

The Live Update SDK provides useful debugging information in Android's Logcat and iOS's Xcode console. If you encounter any issues during testing, **check the logs for more details**.

## Next Steps[¶](#next-steps "Permanent link")

Now that you have Live Updates set up, explore the following guides to make the most out of it.

* **Best Practices**  
---  
Learn about best practices for using Capawesome Cloud Live Updates in your Capacitor app.  
[ Learn More](/docs/cloud/live-updates/guides/best-practices/)
* **Advanced Usage**  
---  
Learn about advanced features and how to customize the Live Update plugin to your needs.  
[ Learn More](/docs/cloud/live-updates/guides/advanced-usage/)

May 7, 2026 

 Back to top 