Skip to main content
Manage and upload assets.

upload

Upload an APK asset to Momentic Cloud. After upload, this asset can be used in both the interactive editor and in test runs. The file provided must exist on disk and be an Android APK (.apk).
npx momentic-mobile assets upload <file> --channel <channel> [--tag <tag>]

Options

--channel <channel>

Release channel for the asset, such as staging or dev. This name affects how the APK will be referenced by tests. Channels cannot be renamed after creation.

--tag <tag>

Version label within the channel. This could be a semantic version like 0.0.1 or a floating tag like latest. If omitted, defaults to latest.

download

Download a mobile asset (APK) from Momentic Cloud to the local machine.
npx momentic-mobile assets download [path] --channel <channel> --tag <tag>

Arguments

[path]

Optional path to download the asset to. Can be a directory or a file path. If omitted, defaults to the current working directory. If a directory is provided, the file will be named <channel>-<tag>.apk.

Options

--channel <channel>

Required. Release channel for the asset to download.

--tag <tag>

Required. Version label within the channel to download.