Skip to content

Commit

Permalink
Release v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cosic committed Dec 19, 2023
1 parent da60c07 commit 988b083
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 25 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.4.1
# 1.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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Huawei App Gallery Publishing

[![Maven Central](https://img.shields.io/maven-central/v/ru.cian/huawei-publish-gradle-plugin.svg)](https://search.maven.org/search?q=a:huawei-publish-gradle-plugin)
![Version](https://img.shields.io/badge/GradlePortal-1.4.1-green.svg)
![Version](https://img.shields.io/badge/GradlePortal-1.4.2-green.svg)
![Version](https://img.shields.io/badge/Gradle-8.*-pink.svg)
[![License](https://img.shields.io/github/license/srs/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)

Expand Down Expand Up @@ -53,7 +53,7 @@ so a different version of AGP corresponds to a specific version of the current p
| 4.0.+ | 1.2.3 |
| 4.1.+ | 1.2.4 |
| 4.2.+ | 1.2.6 |
| 7.+ | 1.3.7 |
| 7.+ | 1.3.8 |
| 8.+ | latest |

# Adding the plugin to your project
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kotlin = "1.8.21"
detekt = "1.23.4"
junitJupiter = "5.9.3"
androidGradlePlugin = "8.0.2"
sampleHuaweiPlugin = "1.4.1-SNAPSHOT"
sampleHuaweiPlugin = "1.4.2-SNAPSHOT"

[libraries]
appcompat = "androidx.appcompat:appcompat:1.6.1"
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android.enableJetifier=true
####################################################################################################

GROUP=ru.cian
VERSION_NAME=1.4.1
VERSION_NAME=1.4.2
IS_SNAPSHOT=true

POM_ARTIFACT_ID=huawei-publish-gradle-plugin
Expand Down
2 changes: 1 addition & 1 deletion sample-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ android {
namespace 'ru.cian.huawei.sample.groovy'

defaultConfig {
applicationId "ru.cian.huawei.sample_groovy"
applicationId "ru.cian.huawei.sample.groovy"
minSdkVersion libs.versions.minSdkVersion.get() as Integer
targetSdkVersion libs.versions.targetSdkVersion.get() as Integer
versionCode 1
Expand Down
4 changes: 2 additions & 2 deletions sample-groovy/src/debug/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="hello_text">Hello World\nfrom Debug Sample2 app</string>
<string name="app_name">Huawei AppGallery Plugin Sample Debug Groovy</string>
<string name="hello_text">Hello World\nfrom Sample Debug Groovy app</string>
</resources>
4 changes: 2 additions & 2 deletions sample-groovy/src/demoDebug/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="hello_text">Hello World\nfrom Demo Debug Sample2 app</string>
<string name="app_name">Huawei AppGallery Plugin Sample Demo Debug Groovy</string>
<string name="hello_text">Hello World\nfrom Sample Demo Debug Groovy app</string>
</resources>
4 changes: 2 additions & 2 deletions sample-groovy/src/demoRelease/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="hello_text">Hello World\nfrom Demo Release Sample2 app</string>
<string name="app_name">Huawei AppGallery Plugin Sample Demo Release Groovy</string>
<string name="hello_text">Hello World\nfrom Sample Demo Release Groovy app</string>
</resources>
4 changes: 2 additions & 2 deletions sample-groovy/src/fullDebug/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="hello_text">Hello World\nfrom Full Debug Sample2 app</string>
<string name="app_name">Huawei AppGallery Plugin Sample Full Debug Groovy</string>
<string name="hello_text">Hello World\nfrom Sample Full Debug Groovy app</string>
</resources>
4 changes: 2 additions & 2 deletions sample-groovy/src/fullRelease/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="hello_text">Hello World\nfrom Fulll Release Sample2 app</string>
<string name="app_name">Huawei AppGallery Plugin Sample Full Release Groovy</string>
<string name="hello_text">Hello World\nfrom Sample Full Release Groovy app</string>
</resources>
3 changes: 1 addition & 2 deletions sample-groovy/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ru.cian.huawei.sample2">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="true"
Expand Down
2 changes: 1 addition & 1 deletion sample-groovy/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<string name="app_name">Huawei Plugin Sample2</string>
<string name="app_name">Huawei AppGallery Plugin Sample Groovy</string>
</resources>
4 changes: 2 additions & 2 deletions sample-kotlin/src/debug/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="hello_text">Hello World\nfrom Debug Sample1 app</string>
<string name="app_name">Huawei AppGallery Plugin Sample Debug Kotlin</string>
<string name="hello_text">Hello World\nfrom Sample Debug Kotlin app</string>
</resources>
2 changes: 1 addition & 1 deletion sample-kotlin/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="app_name">Huawei AppGallery Plugin Sample Kotlin</string>
</resources>
4 changes: 2 additions & 2 deletions sample-kotlin/src/release/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Huawei Plugin Sample1</string>
<string name="hello_text">Hello World\nfrom Release Sample1 app</string>
<string name="app_name">Huawei AppGallery Plugin Sample Release Kotlin</string>
<string name="hello_text">Hello World\nfrom Sample Release Kotlin app</string>
</resources>
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(

pluginManagement {

val huaweiPublish = "1.4.1-SNAPSHOT"
val huaweiPublish = "1.4.2-SNAPSHOT"

resolutionStrategy {
eachPlugin {
Expand Down

0 comments on commit 988b083

Please sign in to comment.