Skip to content

Gradle Play Publisher 3.0.0

Compare
Choose a tag to compare
@SUPERCILEX SUPERCILEX released this 09 Sep 05:50
· 141 commits to master since this release

Note: Gradle 6.5 and the Android Gradle Plugin v4.1.0 are the new minimum requirements. GPP 2.x will not support AGP 4.1 or above.

New features

  • Better compatibility with the maven-publish plugin. If present, GPP will now add its dependencies to the publish task.
  • Proxy authentication courtesy of @wintermute766.

Bug fixes

  • Fixed a critical issue where playConfigs would sometimes inadvertently overwrite each other.

Breaking changes

  • All properties now use the Gradle Property API. Upgrade steps: change foo = blah to foo.set(blah). For more guidance, see the updated docs.
  • The outputProcessor property has been removed. The same functionality can now be achieved using native AGP APIs.
  • Support for PKCS12 credentials (aka .p12 files) has been removed along with the serviceAccountEmail property. Use JSON credentials instead.
  • Deprecated task names have been removed.
  • promo-graphics are no longer supported in the Publishing API and have been removed.

Behavior changes

Promote task

The promote task now handles its different configuration options more simply. Promotion needs a from track and a promote track. If the fromTrack isn't specified explicitly, the least stable release track will be used. If the promoteTrack isn't specified explicitly, it will be assumed that you want to do an in-place update so the resolved fromTrack will be used. Previously, the track property was involved in the computation of both other properties.