cianru / huawei-appgallery-publish-gradle-plugin

Huawei AppGallery Publish Gradle Plugin allows you to publish the android release build file (*.apk or *.aab) to the Huawei AppGallery store
Apache License 2.0
111 stars 20 forks source link

Facing an issues when upload build with releases notes param #43

Closed Maxwell6635 closed 1 year ago

Maxwell6635 commented 1 year ago

huaweiPublish { instances { stagingRelease { credentialsPath = "$rootDir/huawei-credentials.json" deployType = "draft" buildFormat = "apk" publishTimeoutMs = 15_000 publishPeriodMs = 3_000 releaseTime = "2022-12-25T09:00:00+0800" releaseNotes = [ new ru.cian.huawei.publish.ReleaseNote( "uk", "$projectDir/release-notes-en.txt" ) ] } } }

cosic commented 1 year ago

@Maxwell6635 Hi. As I sow from API documentations

appName - App name in a language. This parameter is mandatory when a language type is added.

you doesn't have description for new uk country in your Developer Console yet. Please create it once manualty and try again.

Maxwell6635 commented 1 year ago

@cosic How should I add the app name for this plugins ? And right now this configuration is set in console.

Screenshot 2022-12-22 at 5 47 22 PM
cosic commented 1 year ago

@Maxwell6635 May you have accidentally confused uk (Ukrainian) and en-GB (English - UK)? Please see languages doc

Maxwell6635 commented 1 year ago

@cosic Hey, thanks for the info man. Let me try again.

Maxwell6635 commented 1 year ago

@cosic It working right now, thanks man.