fastlane-plugin-huawei_appgallery_connect 1.0.19 → 1.0.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_action.rb +7 -1
- data/lib/fastlane/plugin/huawei_appgallery_connect/helper/huawei_appgallery_connect_helper.rb +1 -1
- data/lib/fastlane/plugin/huawei_appgallery_connect/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a4f3a4eb6499091d3b7c95a832214f04be9846b9465766aa41e4f2bc405cc86
|
4
|
+
data.tar.gz: 41e306b534c09d085c62178aa7ba9198096ad8a582fa4a0d8ae0f0bef1cd3225
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e610470f62631e286658f801c9e598bd540fe3b0f4fa6168798336bf13a623931ea02b35a71221b1eb09e3de4fab0f8bc253357b62a72a450e987667c5a363a9
|
7
|
+
data.tar.gz: 509a8bc237fbdfa5e099e113532c3c5151bfd20083be18e79150bb447a6c6d2c357f1e661baec97987e6efdb1e58005616b9ec3051edac2a051cc2b8d786265b
|
data/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_action.rb
CHANGED
@@ -161,7 +161,13 @@ module Fastlane
|
|
161
161
|
env_name: "HUAWEI_APPGALLERY_DELAY_BEFORE_REVIEW",
|
162
162
|
description: "Delay before submitting the app for review. Default is 10 seconds. Change this to a higher value if you are having issues submitting the app for review",
|
163
163
|
optional: true,
|
164
|
-
type: Integer)
|
164
|
+
type: Integer),
|
165
|
+
|
166
|
+
FastlaneCore::ConfigItem.new(key: :package_ids,
|
167
|
+
env_name: "HUAWEI_APPGALLERY_PACKAGE_IDS",
|
168
|
+
description: "App Package IDs separated by commas.",
|
169
|
+
optional: true,
|
170
|
+
type: String)
|
165
171
|
]
|
166
172
|
end
|
167
173
|
|
data/lib/fastlane/plugin/huawei_appgallery_connect/helper/huawei_appgallery_connect_helper.rb
CHANGED
@@ -185,7 +185,7 @@ module Fastlane
|
|
185
185
|
def self.query_aab_compilation_status(token,params, pkgVersion)
|
186
186
|
UI.important("Checking aab compilation status")
|
187
187
|
|
188
|
-
uri = URI.parse("https://connect-api.cloud.huawei.com/api/publish/v2/aab/complile/status?appId=#{params[:app_id]}&pkgVersion=#{pkgVersion}")
|
188
|
+
uri = URI.parse("https://connect-api.cloud.huawei.com/api/publish/v2/aab/complile/status?appId=#{params[:app_id]}&pkgIds=#{params[:package_ids]}&pkgVersion=#{pkgVersion}")
|
189
189
|
|
190
190
|
http = Net::HTTP.new(uri.host, uri.port)
|
191
191
|
http.use_ssl = true
|
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.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shreejan Shrestha
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|