dunebox-avd-build-cfg

List available build configurations

Arguments

ArgumentTypeOptionalInterpretation

--server

String

Yes

URL of Dunebox server. Overrides the configured value if provided.

--access-key

String

Yes

Your access key. Overrides configured value if provided.

--secret-key

String

Yes

Your secret key. Overrides configured value if provided.

--pretty

flag

Yes

Pretty print output

Successful Output

When called without the --pretty flag, the result is a JSON object with the following fields

FieldTypeInterpretation

device_defn

Array<DeviceDefn>

Available device definitions, which are virtual abstractions of the real devices, like the Google Pixel 5

avd_base

Array<AvdBase>

Available AVD base images

Each DeviceDefn has the following fields:

FieldTypeInterpretation

id

String

UID of the device definition

name

String

Name of the Device

oem

String

OEM of the Device

Each AvdBase has the following fields:

FieldTypeInterpretation

api

uint8

API level of the AVD

tag

String

Tag of the base image (e.g. google_apis)

abi

String

Application Binary Interface of the AVD (e.g. x86_64)

The result is pretty printed when called with the --pretty flag.

Last updated