appflow native-config update
[appflow, native-config, update]
Update an existing native config in Appflow
appflow native-config update [flags]
Examples
appflow native-config update --app-id=a1234bc --name="My Config" -bundle-id=com.example.app.staging --app-name="My App (Staging)"
Flags
Name | Type | Default | Description |
---|---|---|---|
--app-id [required] | string | Appflow app id | |
--name [required] | string | Appflow native config name | |
--app-name | string | The app's formal name, as it appears on the device's home screen and within app-store interfaces | |
--bundle-id | string | The app's reverse-domain identifier | |
--live-update-app-id | string | [Ionic Cordova Plugin Config] Appflow application id | |
--live-update-channel-name | string | [Ionic Cordova Plugin Config] Live Update channel name | |
--live-update-disable-deploy | boolean | false | [Ionic Cordova Plugin Config] Disable Live Updates from being applied |
--live-update-max-store | number | 0 | [Ionic Cordova Plugin Config] Number of previous Live Updates that can be stored on a device |
--live-update-method | string | "background" | [Ionic Cordova Plugin Config] Live Update method to determine how the app will check for and apply updates, "background", "auto", or "none" |
--live-update-min-background-duration | number | 0 | [Ionic Cordova Plugin Config] Number of seconds the app needs to be in the background for it to have been considered "closed" |
--rename | string | Changes the name of native config |
Global Flags
Name | Type | Default | Description |
---|---|---|---|
-h, --help | boolean | false | Print help information for command |
--config | string | Appflow config file (.appflow.yaml by default) | |
--json | boolean | false | For commands with output, shortcut to print as JSON |
--output | string | "text" | For commands with output, print as [json] or human readable [text] |
--token | string | Ionic authorization token |
Outputs
Name | Type | Description |
---|---|---|
name | string | The name of a Native Config you've created in Appflow. |
base (optional) | object | These Native Config variables allow you to override properties on a Native Build. |
.name (optional) | string | Override the home screen name for a Native Build. |
.bundleId (optional) | string | Override the bundle identifier for a Native Build. |
liveUpdatesConfig (optional) | object | These Native Config variables allow you to override properties used by the Live Updates Plugin. |
.appId (optional) | string | Your app's unique identifier in Appflow. |
.channelName (optional) | string | The name of a channel that hosts Live Updates. |
.maxStore (optional) | number | The maximum number of updates for the Live Updates Plugin to store on the device. |
.minBackgroundDuration (optional) | number | The number of seconds the app needs to be in the background before the Live Updates Plugin considers it closed. |
.updateMethod (optional) | string | The update method for the Live Updates Plugin to use. |
.disableDeploy (optional) | boolean | Whether the Live Updates Plugin should be disabled or not. |