diff --git a/android/app/build.gradle b/android/app/build.gradle index 828f4a6d58..53a93f6d1a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -34,7 +34,7 @@ buildscript { } classpath('com.github.triplet.gradle:play-publisher:3.8.6') - classpath('ru.cian:huawei-publish-gradle-plugin:1.4.0') + classpath('ru.cian:huawei-publish-gradle-plugin:1.4.2') } } @@ -455,7 +455,7 @@ huaweiPublish { credentialsPath = "$projectDir/huawei-appgallery.json" buildFormat = 'aab' deployType = 'draft' // confirm manually - releaseNotes = [] + def releaseDescriptions = [] def localeOverride = [ 'am' : 'am-ET', 'gu': 'gu_IN', @@ -473,8 +473,9 @@ huaweiPublish { def path = file.getPath() def locale = file.parentFile.getName() locale = localeOverride.get(locale, locale) - releaseNotes.add(new ru.cian.huawei.publish.ReleaseNote(locale, path)) + releaseDescriptions.add(new ru.cian.huawei.publish.ReleaseNote(locale, path)) } + releaseNotes = new ru.cian.huawei.publish.ReleaseNotesExtension(releaseDescriptions, true) } } }