I am building my Android app via the Gradle runner, then I deploy it to Bitrise.io.
The problem is that I also run some integration tests before, so APKs suffixed with -androidTest.apk are also generated, and they get uploaded on the build page which is a thing I would like to avoid.
On the Gradle runner config, I have tried to set the APK file exclude filter to "*-unaligned.apk *-androidTest.apk" or "*-unaligned.apk | *-androidTest.apk" without any effect.
Is there any way to use a list in the APK file exclude filter, or maybe more advanced regex?
Indeed this is one of the goals of the step based build configuration, that you can replace or modify any step, as well as add your own “glue” scripts
As a suggestion, how about adding a “Regex” checkbox, you would add the -regex flag on the find command, and we could input our own regex for the exclude filter.