fastlane-plugin-huawei_appgallery_connect 1.0.19 → 1.0.22

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: 5ad5b99cb7e2f9b8189eb700c3ad1f4bd29a83569a72cc7e095efd5b44e139d1
4
- data.tar.gz: 5135db4b14e398fddf95ad762129a9acb3cfac6f371453d60a05a38b1749ae51
3
+ metadata.gz: ba38e11c0c4c135c7685008802a9dad4c810b85f7f3f514d4479e590c5a6d678
4
+ data.tar.gz: cdf4811e1c2a5cbe2c41f5a2ebab16c99bff01e642cc71cfbc9c39d22c66621c
5
5
  SHA512:
6
- metadata.gz: 7d929f54743a20238a21bb3c038c82fb49dd2d15021357ad7a6b8826e19ed62eca52c1f4e140366ece81174243e389b8ee0d4ce97518fc410a315d772f9ab761
7
- data.tar.gz: 50205181ecf2d71e4360bc332835a5a13dde3a35b1e875a1023940ccdf2b6be7ea6458474e7ae1cbdc19b341bc0ed42906d26b4031537cb85a1fc5ecd2faf88f
6
+ metadata.gz: d5b72a30518b8ab10041a737e99595fb6d70c17cd4851c87a3199802d8ef610000a4ce116244e69efdd23644457b65416e2c3ada8986b0e98951df692e742775
7
+ data.tar.gz: 77b72f7286a44475b280e5609d99b16c180f9883762b0ea4df8bed7e3d57e983e40852f46131baa71574bce8453954dcadc4868aa84cdf1db1bb20d3b983fea1
data/README.md CHANGED
@@ -23,15 +23,15 @@ huawei_appgallery_connect(
23
23
  client_id: "<CLIENT_ID>",
24
24
  client_secret: "<CLIENT_SECRET>",
25
25
  app_id: "<APP_ID>",
26
- apk_path: "<APK_PATH>"
26
+ apk_path: "<APK_PATH>",
27
27
 
28
28
  # Optional, Parameter beyond this are optional
29
29
 
30
30
  # If you are facing errors when submitting for review, increase the delay time before submitting the app for review using this option:
31
- delay_before_submit_for_review: 20
31
+ delay_before_submit_for_review: 20,
32
32
 
33
33
  # if you're uploading aab instead of apk, specify is_aab to true and specify path to aab file on apk_path
34
- is_aab: true
34
+ is_aab: true,
35
35
 
36
36
  submit_for_review: false,
37
37
 
@@ -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
 
@@ -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=#{pkgVersion}")
189
189
 
190
190
  http = Net::HTTP.new(uri.host, uri.port)
191
191
  http.use_ssl = true
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module HuaweiAppgalleryConnect
3
- VERSION = "1.0.19"
3
+ VERSION = "1.0.22"
4
4
  end
5
5
  end
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.19
4
+ version: 1.0.22
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-02 00:00:00.000000000 Z
11
+ date: 2022-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry