GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata.
There is one test failing - GenerateResourcesIntegrationTest#'play' file name is not allowed.
The thing is that it used to pass due to empty catalogues being passed into GenerateResources task - with the upgrade it's not valid anymore - only actual files are provided.
@SUPERCILEX I am aware that you do not maintain this project anymore, however could you please tell if the idea behind this test was to verify if no flavor containing the word "play" exists in the project? If so, I'd rather rewrite this check to work differently.
Fixes https://github.com/Triple-T/gradle-play-publisher/issues/1068
There is one test failing -
GenerateResourcesIntegrationTest#'play' file name is not allowed
. The thing is that it used to pass due to empty catalogues being passed intoGenerateResources
task - with the upgrade it's not valid anymore - only actual files are provided.Parameters before:
Parameters after:
@SUPERCILEX I am aware that you do not maintain this project anymore, however could you please tell if the idea behind this test was to verify if no flavor containing the word "play" exists in the project? If so, I'd rather rewrite this check to work differently.