fastlane-plugin-huawei_appgallery_connect 1.0.22 → 1.0.23
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: 82c891eca588e8ed771f06b0516c930400730f3d8cb412b567643302288d94d4
|
4
|
+
data.tar.gz: be1ace56d9d317fb2fad41dd7d0ff7d8cde1927645568475d8feba326fd952fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2b51a3e88428821164d4b2b121d029bf867d1088de36260a5ee3860b7e5974619c8abbd6a334354cedbb318718e701af9f33bf0bbd2c39e2addeabacbb9030e
|
7
|
+
data.tar.gz: 60d6c641ca356a4af9ad059054d7659eb75ab89bd4bb9ae8e3053199b89a74425ca816cb846cf7be5eed8bdde31d0348f14782a48b2079ac08799646d6c816ca
|
data/lib/fastlane/plugin/huawei_appgallery_connect/helper/huawei_appgallery_connect_helper.rb
CHANGED
@@ -184,7 +184,6 @@ module Fastlane
|
|
184
184
|
|
185
185
|
def self.query_aab_compilation_status(token,params, pkgVersion)
|
186
186
|
UI.important("Checking aab compilation status")
|
187
|
-
|
188
187
|
uri = URI.parse("https://connect-api.cloud.huawei.com/api/publish/v2/aab/complile/status?appId=#{params[:app_id]}&pkgIds=#{pkgVersion}")
|
189
188
|
|
190
189
|
http = Net::HTTP.new(uri.host, uri.port)
|
@@ -203,7 +202,7 @@ module Fastlane
|
|
203
202
|
result_json = JSON.parse(response.body)
|
204
203
|
|
205
204
|
if result_json['ret']['code'] == 0
|
206
|
-
return result_json['aabCompileStatus']
|
205
|
+
return result_json['pkgStateList'][0]['aabCompileStatus']
|
207
206
|
else
|
208
207
|
UI.user_error!(result_json)
|
209
208
|
return -999
|