Quick Start
AppsOnAir CodePush allows you to deploy over-the-air (OTA) updates to your mobile apps seamlessly. This section covers how to authenticate, create deployments, release updates, manage mandatory vs optional updates, and perform rollbacks when needed.
CLI Installation
Run the following command to install @appsonair/codepush-cli globally:
- NPM
- Yarn
npm install -g @appsonair/codepush-cli
yarn global add @appsonair/codepush-cli
Authentication
Before using AppsOnAir CodePush, you need to log in.
-
Run the following command to start the login process:
Terminalappsonair-codepush login
-
This will launch a browser, asking you to authenticate with your AppsOnAir account.
-
Once authenticated, it generate an access key you can copy/paste into the CLI in order to login.
To check the logged-in user, run:
appsonair-codepush whoami
Checking Available Apps
To list the apps you have access to:
appsonair-codepush app list
App Naming Convention
AppsOnAir uses a different app naming convention compared to AppCenter. While AppCenter uses the app name directly, AppsOnAir follows this structure:
<workspace-name>-<app-name>-<platform>
For example, if your workspace is MyCompany and your app is MyApp, the names would be:
-
MyCompany-MyApp-android
-
MyCompany-MyApp-ios
Ensure you use this format when interacting with the CLI.
Releasing Updates
To release an update to a specific deployment, run:
appsonair-codepush release-react <app-name> --target-version <target-version>
<platform>
should be android or ios.<target-version>
specifies the app version to target.
Example:
appsonair-codepush release-react MyApp --target-version 1.0.0
Mandatory vs Optional Updates
By default, updates are optional, meaning users can download them at their convenience. However, if you need to force an update (e.g., for security fixes), use the --mandatory
flag:
appsonair-codepush release-react <app-name> --target-version <target-version> --mandatory
Rollback & Versioning
If an update causes issues, you can rollback to a previous version:
appsonair-codepush rollback <app-name>
Example:
appsonair-codepush rollback MyApp
This reverts the last update, ensuring users receive the previous stable version.
To view update history:
appsonair-codepush deployment history <app-name>