Publish Android App with YAML
Tip
YAML parameters for Publish Android App
Name | Type | Description |
---|---|---|
action Required | String | The name of the action. |
type Required | String | The type of the action. Should be set to ANDROID_PUBLISH_APK . |
application_id Required | String | The ID of the Android Application. |
track Required | String | The track type to read or modify. Can be one of production , alpha , beta , rollout , internal or custom track as configured in Google Play Console. |
apk_files Required | APKs[] | The list of sets of paths to the APKs. |
integration Required | String | The ID of the integration. |
draft | Boolean | Set to true to publish as a draft. |
user_fraction | Float | Portion of the users who should get the staged rollout version of the APK (range 0.0 - 1.0). Required if track is set to rollout . |
mapping_path | String | The path to the deobfuscated file of the specified APK. |
changes_path | String | The path to the changelog file. |
supersede_versions | Boolean | Check and disable superseded versions in other tracks (if any). |
YAML example for Publish Android App
yamlactions: - action: "Publish Android application" type: "ANDROID_PUBLISH_APK" application_id: "com.mycompany.mylovelyapp" track: "alpha" user_fraction: 0.05 mapping_path: "" changes_path: "changes.xml" supersede_versions: true draft: true apk_files: - apk_path: "my-app-release9.apk" main_expansion_path: "ss" patch_expansion_path: "" integration: "my_integration"
Last modified on Sep 23, 2024