fastlane-plugin-huawei_appgallery_connect 1.0.20 → 1.0.21
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: f9fc41a8d6e55897cd72faea6687c02535685d249689a602716a336998acb4ff
|
4
|
+
data.tar.gz: fadc99b2e64d76088cbebebae314a8d9dc8a02a8b41e20d5e435ce979589c873
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a640ab54fb7c6b2595f536c24ff6397c6a49e0b592e0cce5a6eec9d7b0429eb8a2fd6b4dcf0efb7491bc6d5db96619c568d2c9fdb94e7d19123b75e61d57f6bf
|
7
|
+
data.tar.gz: 06c31847ac1001da459cffce87d9013020b3247be624a0aca0d5bafc3be88659933dd02b5da9536779ffa566621fdd61ef40c73eb6aacd4fb80e761c5fc913d4
|
data/README.md
CHANGED
@@ -23,15 +23,18 @@ 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
|
+
|
36
|
+
# package id should be defined if you are submitting app for review
|
37
|
+
package_ids: "com.example.app",
|
35
38
|
|
36
39
|
submit_for_review: false,
|
37
40
|
|
data/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_action.rb
CHANGED
@@ -165,7 +165,7 @@ module Fastlane
|
|
165
165
|
|
166
166
|
FastlaneCore::ConfigItem.new(key: :package_ids,
|
167
167
|
env_name: "HUAWEI_APPGALLERY_PACKAGE_IDS",
|
168
|
-
description: "App Package IDs separated by commas
|
168
|
+
description: "App Package IDs separated by commas",
|
169
169
|
optional: true,
|
170
170
|
type: String)
|
171
171
|
]
|