# Gradle Runner v6.0.0

**URL:** https://discuss.bitrise.io/t/gradle-runner-v6-0-0/26196
**Category:** Changelog
**Tags:** step-update
**Created:** [August 28, 2026, 12:42pm UTC](https://discuss.bitrise.io/t/gradle-runner-v6-0-0/26196 "2026-08-28T12:42:13Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex016/uploads/bitrise/original/2X/d/d901cf2aad020f2dd11918afc89ec2089bb87b35.png) [@system](https://discuss.bitrise.io/u/system)
#### Post date: [August 28, 2026, 12:42pm UTC](https://discuss.bitrise.io/t/gradle-runner-v6-0-0/26196/1 "2026-08-28T12:42:13Z")

</div>

## What’s Changed

The Step exports the mapping file in the final output dir, and ignores intermediate copies. This is only relevant for builds still exporting an `apk`, bundles (`*.aab`) include the mapping file.

### Breaking changes

Two input defaults changed, to ignore `intermediates` dir. It is not expected to cause actual breakage for most users.

**`mapping_file_exclude_filter`**

```diff
- */tmp/*
+ */tmp/*
+ */intermediates/*
+ *compose-mapping.txt

```

**`test_apk_file_exclude_filter`**

```diff
- (empty)
+ */intermediates/*

```

**If you want the previous behaviour** , set the old defaults explicitly:

```yaml
- gradle-runner@6:
    inputs:
    - mapping_file_exclude_filter: "*/tmp/*"
    - test_apk_file_exclude_filter: ""

```

**If you already set these inputs yourself** , note that a filter input _replaces_ the defaults rather than extending them, so copy the new patterns into your own list to get the fix:

```yaml
- mapping_file_exclude_filter: |-
    */tmp/*
    */intermediates/*
    *compose-mapping.txt
    */your-own-pattern/*

```

### Known limitation

With several minified variants in one build, each variant’s published `mapping.txt` still collides by name in the deploy directory, so all but the first get a timestamped name and `$BITRISE_MAPPING_PATH` still points at only one of them. Use `mapping_file_include_filter` to narrow the export to the variant you deploy, for example `*/productionRelease/mapping.txt`.

> **[Release 6.0.0 · bitrise-steplib/steps-gradle-runner](https://github.com/bitrise-steplib/steps-gradle-runner/releases/6.0.0)**
>
> What's Changed
> The Step exports the mapping file in the final output dir, and ignores intermediate copies. This is only relevant for builds still exporting an apk, bundles (\*.aab) include the mappi...
