Skip to content

Commit

Permalink
Add note about AAB and mapping files (#133)
Browse files Browse the repository at this point in the history
* Add note about AAB and mapping files

* Update README.md
  • Loading branch information
ofalvai authored Oct 8, 2021
1 parent e45fe90 commit 3a19333
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ steps:
| `release_name` | The name of the release. By default Play Store generates the name from the APK's `versionName` value. | | |
| `update_priority` | This allows your app to decide how strongly to recommend an update to the user. Accepts values between 0 and 5 with 0 being the lowest priority and 5 being the highest priority. By default this value is 0. For more information see here: https://developer.android.com/guide/playcore/in-app-updates#check-priority. | | `0` |
| `whatsnews_dir` | Use this input to specify localized 'what's new' files directory. This directory should contain 'whatsnew' files postfixed with the locale. what's new file name pattern: `whatsnew-LOCALE` Example: ``` + - [PATH/TO/WHATSNEW] \| + - whatsnew-en-US \| + - whatsnew-de-DE ``` Format examples: - "./" # what's new files are in the repo root directory - "./whatsnew" # what's new files are in the whatsnew directory | | |
| `mapping_file` | The `mapping.txt` file provides a translation between the original and obfuscated class, method, and field names. In case of deploying [multiple artifacts](https://developer.android.com/google/play/publishing/multiple-apks.html), you can specify multiple mapping.txt files as a newline (`\n`) or pipe (`\|`) separated list. The order of mapping files should match the list of APK or AAB files in the `app_path` input. | | `$BITRISE_MAPPING_PATH` |
| `mapping_file` | The `mapping.txt` file provides a translation between the original and obfuscated class, method, and field names. Uploading a mapping file is not required when deploying an AAB as the app bundle contains the mapping file itself. In case of deploying [multiple artifacts](https://developer.android.com/google/play/publishing/multiple-apks.html), you can specify multiple mapping.txt files as a newline (`\n`) or pipe (`\|`) separated list. The order of mapping files should match the list of APK or AAB files in the `app_path` input. | | `$BITRISE_MAPPING_PATH` |
| `retry_without_sending_to_review` | If set to `true` and the initial change request fails, the changes will not be reviewed until they are manually sent for review from the Google Play Console UI. If set to `false`, the step fails if the changes can't be automatically sent to review. | required | `false` |
| `ack_bundle_installation_warning` | Must be set to `true` if the App Bundle installation may trigger a warning on user devices (for example, if installation size may be over a threshold, typically 100 MB). | required | `false` |
</details>
Expand Down
2 changes: 2 additions & 0 deletions step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ inputs:
title: Mapping txt file path
description: |-
The `mapping.txt` file provides a translation between the original and obfuscated class, method, and field names.
Uploading a mapping file is not required when deploying an AAB as the app bundle contains the mapping file itself.
In case of deploying [multiple artifacts](https://developer.android.com/google/play/publishing/multiple-apks.html), you can specify multiple mapping.txt files as a newline (`\n`) or pipe (`|`) separated list. The order of mapping files should match the list of APK or AAB files in the `app_path` input.
- retry_without_sending_to_review: "false"
Expand Down

0 comments on commit 3a19333

Please sign in to comment.