Releases: cianru/huawei-appgallery-publish-gradle-plugin
Releases · cianru/huawei-appgallery-publish-gradle-plugin
v1.5.0
Add
- [issue#58] Add new
publishSocketTimeoutInSeconds
parameter to change the socket timeout for publish requests in seconds. - [issue#59] Add new
credentials
parameter to provide credentials as a base64 encoded string.
Breaking Changes
- Remove support of Sonatype. It means that you can't use the plugin from Maven Central. You must to use the Gradle Portal.
To do this, you need to add the following code to yoursettings.gradle.kts
:pluginManagement { repositories { gradlePluginPortal() } }
- Change classpath dependency from
ru.cian:huawei-publish-gradle-plugin:<VERSION>
toru.cian.huawei-plugin:plugin:<VERSION>
. - Remove support of
clientId
andclientSecret
CLI params. Usecredentials
orcredentialsPath
params instead.
v1.4.2
Add
- [issue#50] Added new parameter
removeHtmlTags
to remove html tags from Release Notes and support of the same Release Notes as for Google Play.
Fix
- Correct mustRunAfter publish task for
assemble*
andbundle*
tasks for Gradle 8 and JDK 17+
Breaking changes
Changed releaseNotes
configuration block. Instead of
releaseNotes = listOf(
ru.cian.rustore.publish.ReleaseNote(
lang = "en-US",
filePath = "$projectDir/release-notes-en.txt"
),
)
new configuration would
releaseNotes = ru.cian.huawei.publish.ReleaseNotesExtension(
descriptions = listOf(
ru.cian.huawei.publish.ReleaseNote(
lang = "en-US",
filePath = "$projectDir/release-notes-en.txt"
)
),
removeHtmlTags = false
)
v1.3.8
v1.4.0
Add
- Support of Android Gradle Plugin 8+ and JDK 17+
Other
- Upgrade Gradle upto 8.1
- Upgrade Android Gradle Plugin upto 8.0.0
v1.3.6
v1.3.5
Add
- issue#41 Add param to update App Basic Info into Developer Console. See
appBasicInfo
Gradle Plugin Extension param and--appBasicInfo
CLI param description. Thanks @vmtrue for contribution.
Other
- Upgrade Kolint upto 1.8.0
- Upgrade Gradle upto 7.6
- Upgrade Android Gradle Plugin upto 7.3.1
- Support of Gradle Version Catalog for sharing dependencies
v1.3.4
v1.2.6
v1.3.3
Fix
- issue#36: publishHuaweiAppGallery* task not created for all build types.
The plugin create publishing task for debuggable build too. - issue#38: Publishing bug: "The package is being compiled, please try again".
Huawei changed the behavior of current api url for apk build copied it as for aab with waiting for review.