fastlane-plugin-huawei_appgallery_connect 1.0.24 → 1.0.26
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f20c028c8e26916529edfbbb96f65abc93b24dca4e6722b851bc27c92468689
|
4
|
+
data.tar.gz: 76f394ed59804d49919e962f33252b87d02ec2e0b795f4a15b3b6af831fbbd23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c015a15fd3c1b8c60ce9a9e9af6216e9c5c9be0ceff5d6098b1b032fa228e0bfe3d3a583c9868c5c38a161e9fa41b183a7d0a04db209ce47f4866c8a4377efe9
|
7
|
+
data.tar.gz: 6bedf89e173cea230b2acb15262fd6f99308cb40bcbd7332883f6c72d60f90001f11fee64525450868613982ee24da8cfa88e271fc360ba20601a58aef6cd2fc
|
data/README.md
CHANGED
@@ -58,7 +58,6 @@ huawei_appgallery_connect_submit_for_review(
|
|
58
58
|
client_secret: "<CLIENT_SECRET>",
|
59
59
|
app_id: "<APP_ID>",
|
60
60
|
|
61
|
-
|
62
61
|
# Optional, Parameter beyond this are optional
|
63
62
|
|
64
63
|
# release time to release app on specific date
|
@@ -80,5 +79,34 @@ huawei_appgallery_connect_get_app_info(
|
|
80
79
|
client_secret: "<CLIENT_SECRET>",
|
81
80
|
app_id: "<APP_ID>"
|
82
81
|
)
|
82
|
+
```
|
83
|
+
|
84
|
+
To update the app's metadata like release notes, app name, brief info and app description you can make use of the following action
|
83
85
|
|
84
86
|
```
|
87
|
+
huawei_appgallery_connect_update_app_localization(
|
88
|
+
client_id: "<CLIENT_ID>",
|
89
|
+
client_secret: "<CLIENT_SECRET>",
|
90
|
+
app_id: "<APP_ID>",
|
91
|
+
metadata_path: "<METADATA PATH>" # defaults to fastlane/metadata/huawei
|
92
|
+
)
|
93
|
+
```
|
94
|
+
|
95
|
+
Your folder structure for applying multiple languages for the metadata should look like this:
|
96
|
+
|
97
|
+
```
|
98
|
+
└── fastlane
|
99
|
+
└── metadata
|
100
|
+
└── huawei
|
101
|
+
├── en-US
|
102
|
+
│ ├── app_name.txt
|
103
|
+
│ └── app_description.txt
|
104
|
+
│ └── introduction.txt
|
105
|
+
│ └── release_notes.txt
|
106
|
+
└── fr-FR
|
107
|
+
├── app_name.txt
|
108
|
+
└── app_description.txt
|
109
|
+
└── introduction.txt
|
110
|
+
└── release_notes.txt
|
111
|
+
```
|
112
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-huawei_appgallery_connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shreejan Shrestha
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -136,6 +136,20 @@ dependencies:
|
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: 2.137.0
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: cgi
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
139
153
|
description:
|
140
154
|
email: shr3jn@gmail.com
|
141
155
|
executables: []
|