REST Resource: edits.apks
Stay organized with collections
Save and categorize content based on your preferences.
Resource: Apk
Information about an APK. The resource for ApksService.
JSON representation |
{
"versionCode": integer,
"binary": {
object (ApkBinary )
}
} |
Fields |
versionCode |
integer
The version code of the APK, as specified in the manifest file.
|
binary |
object (ApkBinary )
Information about the binary payload of this APK.
|
ApkBinary
Represents the binary payload of an APK.
JSON representation |
{
"sha1": string,
"sha256": string
} |
Fields |
sha1 |
string
A sha1 hash of the APK payload, encoded as a hex string and matching the output of the sha1sum command.
|
sha256 |
string
A sha256 hash of the APK payload, encoded as a hex string and matching the output of the sha256sum command.
|
Methods |
|
Creates a new APK without uploading the APK itself to Google Play, instead hosting the APK at a specified URL. |
|
Lists all current APKs of the app and edit. |
|
Uploads an APK and adds to the current edit. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-17 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-17 UTC."],[[["The `Apk` resource provides information about an APK, including its version code and binary payload details."],["`ApkBinary` represents the binary payload of an APK with SHA1 and SHA256 hashes for integrity verification."],["Developers can manage APKs using methods to upload, list, or add externally hosted APKs."]]],["The provided content describes APK information and its binary payload. An APK's data includes its `versionCode` (an integer) and `binary`, which contains `sha1` and `sha256` hash strings for its payload. Key actions involve managing APKs through methods such as `addexternallyhosted` (creating an APK without direct upload), `list` (retrieving existing APKs), and `upload` (uploading an APK).\n"]]