fastlane-plugin-huawei_appgallery_connect 1.0.7 → 1.0.12

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: 58302bbcf0fb6a8711345cf3a1498335a6c0a8a18dea0e4e34b9d0ae74383e5e
4
- data.tar.gz: 1e60d771e423f877d9015275bcd4d4fdfe54f32bb80c5b116ccbe29cd1e8361a
3
+ metadata.gz: 10df8cd86b7d3f5842e464d2fd87ad5101fd095ea3f3f207e66c3977cb22282f
4
+ data.tar.gz: 9b40c384a45c192cae8f0edb998740cadda81934d49d90567a4edcff56bd07aa
5
5
  SHA512:
6
- metadata.gz: a66c42655b6fd63deadb0cc51645a7fdd76d366fcea290b3113fc8025160b045bb943df30c2aa91c43afc902b884e1b9d9603676693fcbfc51bb4e1e04884b59
7
- data.tar.gz: 27f55e5c0c33a0c8ccc3064c0e0e78c3b61b07e79f415989b04c1357143892c382c7c140af6f80ba89cfb67012e1ec974d006d741823f3c76e935d2146b51a89
6
+ metadata.gz: e60e293d3a7185a31c574d2cbdea83dd1a99026c996f6ff3497d1714e7160ff634399495f09d0cdfd9bab2108220f10d724ccd20c07530cb0d30155b3d6c445b
7
+ data.tar.gz: 8a572b1ba26f0cc5973966971f3580fc25448d47b8545a5ceac27cd1d6b82507b457afd286cefb825ac4a8438d77f411e057665c9d426a514c315c878b662434
data/README.md CHANGED
@@ -12,41 +12,67 @@ fastlane add_plugin huawei_appgallery_connect
12
12
 
13
13
  ## About huawei_appgallery_connect
14
14
 
15
- Huawei AppGallery Connect Plugin
15
+ Huawei AppGallery Connect Plugin can be used to upload Android application on the Huawei App Gallery using fastlane.
16
16
 
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
17
+ ## Usage
18
18
 
19
- ## Example
20
-
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
-
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
25
- ## Run tests for this plugin
26
-
27
- To run both the tests, and code style validation, run
19
+ To get started you will need the client id, client Secret & app ID which can be obtained from your Huawei AppGallery Connect account.
28
20
 
29
21
  ```
30
- rake
22
+ huawei_appgallery_connect(
23
+ client_id: "<CLIENT_ID>",
24
+ client_secret: "<CLIENT_SECRET>",
25
+ app_id: "<APP_ID>",
26
+ apk_path: "<APK_PATH>"
27
+
28
+ # Optional, Parameter beyond this are optional
29
+
30
+ submit_for_review: false,
31
+
32
+ privacy_policy_url: "https://example.com",
33
+ changelog_path: "<PATH_TO_CHANGELOG_FILE>",
34
+
35
+ # release time to release app on specific date
36
+ release_time: "2019-12-25T07:05:15+0000",
37
+
38
+ # For phase wise release: set these parameters
39
+ phase_wise_release: true,
40
+ phase_release_start_time: "2019-12-25T07:05:15+0000",
41
+ phase_release_end_time: "2019-12-28T07:05:15+0000",
42
+ phase_release_percent: "10.00",
43
+ phase_release_description: "<DESCRIPTION>"
44
+ )
31
45
  ```
32
46
 
33
- To automatically fix many of the styling issues, use
34
- ```
35
- rubocop -a
36
- ```
47
+ The following action can be used to submit the app for review if submit_for_review was set to false during the upload of apk
37
48
 
38
- ## Issues and Feedback
39
-
40
- For any other issues and feedback about this plugin, please submit it to this repository.
49
+ ```
50
+ huawei_appgallery_connect_submit_for_review(
51
+ client_id: "<CLIENT_ID>",
52
+ client_secret: "<CLIENT_SECRET>",
53
+ app_id: "<APP_ID>",
41
54
 
42
- ## Troubleshooting
43
55
 
44
- If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
56
+ # Optional, Parameter beyond this are optional
45
57
 
46
- ## Using _fastlane_ Plugins
58
+ # release time to release app on specific date
59
+ release_time: "2019-12-25T07:05:15+0000",
47
60
 
48
- For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
61
+ # For phase wise release: set these parameters
62
+ phase_wise_release: true,
63
+ phase_release_start_time: "2019-12-25T07:05:15+0000",
64
+ phase_release_end_time: "2019-12-28T07:05:15+0000",
65
+ phase_release_percent: "10.00",
66
+ phase_release_description: "<DESCRIPTION>"
67
+ )
68
+ ```
69
+ You can also retreive app info by making use of the following action
49
70
 
50
- ## About _fastlane_
71
+ ```
72
+ huawei_appgallery_connect_get_app_info(
73
+ client_id: "<CLIENT_ID>",
74
+ client_secret: "<CLIENT_SECRET>",
75
+ app_id: "<APP_ID>"
76
+ )
51
77
 
52
- _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
78
+ ```
@@ -0,0 +1,107 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/huawei_appgallery_connect_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class HuaweiAppgalleryConnectSubmitForReviewAction < Action
7
+ def self.run(params)
8
+ token = Helper::HuaweiAppgalleryConnectHelper.get_token(params[:client_id], params[:client_secret])
9
+
10
+ if token.nil?
11
+ UI.message("Cannot retrieve token, please check your client ID and client secret")
12
+ else
13
+
14
+ Helper::HuaweiAppgalleryConnectHelper.submit_app_for_review(token, params)
15
+ end
16
+ end
17
+
18
+ def self.description
19
+ "Huawei AppGallery Connect Plugin"
20
+ end
21
+
22
+ def self.authors
23
+ ["Shreejan Shrestha"]
24
+ end
25
+
26
+ def self.return_value
27
+ # If your method provides a return value, you can describe here what it does
28
+ end
29
+
30
+ def self.details
31
+ # Optional:
32
+ "Fastlane plugin to upload Android app to Huawei AppGallery Connect"
33
+ end
34
+
35
+ def self.available_options
36
+ [
37
+ FastlaneCore::ConfigItem.new(key: :client_id,
38
+ env_name: "HUAWEI_APPGALLERY_CONNECT_CLIENT_ID",
39
+ description: "Huawei AppGallery Connect Client ID",
40
+ optional: false,
41
+ type: String),
42
+
43
+ FastlaneCore::ConfigItem.new(key: :client_secret,
44
+ env_name: "HUAWEI_APPGALLERY_CONNECT_CLIENT_SECRET",
45
+ description: "Huawei AppGallery Connect Client Secret",
46
+ optional: false,
47
+ type: String),
48
+
49
+ FastlaneCore::ConfigItem.new(key: :app_id,
50
+ env_name: "HUAWEI_APPGALLERY_CONNECT_APP_ID",
51
+ description: "Huawei AppGallery Connect App ID",
52
+ optional: false,
53
+ type: String),
54
+
55
+ FastlaneCore::ConfigItem.new(key: :phase_wise_release,
56
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE",
57
+ description: "Phase wise release",
58
+ optional: true,
59
+ conflicting_options: [:release_time],
60
+ type: Boolean),
61
+
62
+ FastlaneCore::ConfigItem.new(key: :phase_release_start_time,
63
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_START_TIME",
64
+ description: "Start time of the validity period of the release by phase. The value is UTC time in the following format: yyyy-MM-dd 'T' HH:mm:ssZZ",
65
+ optional: true,
66
+ type: String),
67
+
68
+ FastlaneCore::ConfigItem.new(key: :phase_release_end_time,
69
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_END_TIME",
70
+ description: "End time of the validity period of the release by phase. The value is UTC time in the following format: yyyy-MM-dd 'T' HH:mm:ssZZ",
71
+ optional: true,
72
+ type: String),
73
+
74
+ FastlaneCore::ConfigItem.new(key: :phase_release_percent,
75
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_PERCENT",
76
+ description: "Percentage of the release by phase. The value must be accurate to two decimal places and does not contain the percent sign (%)",
77
+ optional: true,
78
+ type: String),
79
+
80
+ FastlaneCore::ConfigItem.new(key: :phase_release_description,
81
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_DESCRIPTION",
82
+ description: "Phase-based release description. (Max 500 characters)",
83
+ optional: true,
84
+ type: String),
85
+
86
+ FastlaneCore::ConfigItem.new(key: :release_time,
87
+ env_name: "HUAWEI_APPGALLERY_CONNECT_RELEASE_TIME",
88
+ description: "Release time in UTC format for app release on a specific date. The format is yyyy-MM-dd'T'HH:mm:ssZZ)",
89
+ optional: true,
90
+ conflicting_options: [:phase_wise_release],
91
+ type: String),
92
+
93
+ FastlaneCore::ConfigItem.new(key: :changelog_path,
94
+ env_name: "HUAWEI_APPGALLERY_CONNECT_CHANGELOG_PATH",
95
+ description: "Path to Changelog file (Default empty)",
96
+ optional: true,
97
+ type: String)
98
+ ]
99
+ end
100
+
101
+ def self.is_supported?(platform)
102
+ [:android].include?(platform)
103
+ true
104
+ end
105
+ end
106
+ end
107
+ end
@@ -41,6 +41,7 @@ module Fastlane
41
41
  UI.success("Successfully getting app info")
42
42
  return result_json['appInfo']
43
43
  else
44
+ UI.user_error!(result_json)
44
45
  UI.user_error!("Failed to get app info")
45
46
  end
46
47
 
@@ -69,6 +70,7 @@ module Fastlane
69
70
  if result_json['ret']['code'] == 0
70
71
  UI.success("Successfully updated app info")
71
72
  else
73
+ UI.user_error!(result_json)
72
74
  UI.user_error!("Failed to update app info")
73
75
  end
74
76
  end
@@ -225,10 +227,12 @@ module Fastlane
225
227
  if result_json['ret']['code'] == 0
226
228
  UI.success("Successfully submitted app for review")
227
229
  else
228
- UI.user_error!("Failed to submit app for review")
230
+ UI.user_error!(result_json)
231
+ UI.user_error!("Failed to submit app for review.")
229
232
  end
230
233
 
231
234
  end
232
235
  end
233
236
  end
234
237
  end
238
+
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module HuaweiAppgalleryConnect
3
- VERSION = "1.0.7"
3
+ VERSION = "1.0.12"
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.7
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shreejan Shrestha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-05 00:00:00.000000000 Z
11
+ date: 2020-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -147,6 +147,7 @@ files:
147
147
  - lib/fastlane/plugin/huawei_appgallery_connect.rb
148
148
  - lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_action.rb
149
149
  - lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_get_app_info.rb
150
+ - lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_submit_for_review.rb
150
151
  - lib/fastlane/plugin/huawei_appgallery_connect/helper/huawei_appgallery_connect_helper.rb
151
152
  - lib/fastlane/plugin/huawei_appgallery_connect/version.rb
152
153
  homepage: https://github.com/shr3jn/fastlane-plugin-huawei_appgallery_connect