REST Resource: edits.bundles

  • A Bundle resource provides information about an app bundle, including its version code and SHA hashes.

  • Bundles have three fields: versionCode, sha1, and sha256, representing version, SHA-1 hash, and SHA-256 hash, respectively.

  • Developers can use methods to list all bundles in an edit and upload new bundles.

Resource: Bundle

Information about an app bundle. The resource for BundlesService.

JSON representation
{
  "versionCode": integer,
  "sha1": string,
  "sha256": string
}
Fields
versionCode

integer

The version code of the Android App Bundle, as specified in the Android App Bundle's base module APK manifest file.

sha1

string

A sha1 hash of the upload payload, encoded as a hex string and matching the output of the sha1sum command.

sha256

string

A sha256 hash of the upload payload, encoded as a hex string and matching the output of the sha256sum command.

Methods

list

Lists all current Android App Bundles of the app and edit.

upload

Uploads a new Android App Bundle to this edit.