3.0.0
版本发布时间: 2020-09-09 13:50:56
Triple-T/gradle-play-publisher最新发布版本:3.11.0(2024-08-31 03:25:43)
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 thepublish
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
tofoo.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 theserviceAccountEmail
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.