This project is a fastlane plugin. To get started with fastlane-plugin-huawei_appgallery_connect
, add it to your project by running:
fastlane add_plugin huawei_appgallery_connect
Huawei AppGallery Connect Plugin can be used to upload Android application on the Huawei App Gallery using fastlane.
To get started you will need the client id, client Secret & app ID which can be obtained from your Huawei AppGallery Connect account.
huawei_appgallery_connect(
client_id: "<CLIENT_ID>",
client_secret: "<CLIENT_SECRET>",
app_id: "<APP_ID>",
apk_path: "<APK_PATH>"
# Optional, Parameter beyond this are optional
# if you're uploading aab instead of apk, specify is_aab to true and specify path to aab file on apk_path
is_aab: true
submit_for_review: false,
privacy_policy_url: "https://example.com",
changelog_path: "<PATH_TO_CHANGELOG_FILE>",
# release time to release app on specific date
release_time: "2019-12-25T07:05:15+0000",
# For phase wise release: set these parameters
phase_wise_release: true,
phase_release_start_time: "2019-12-25T07:05:15+0000",
phase_release_end_time: "2019-12-28T07:05:15+0000",
phase_release_percent: "10.00",
phase_release_description: "<DESCRIPTION>"
)
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
huawei_appgallery_connect_submit_for_review(
client_id: "<CLIENT_ID>",
client_secret: "<CLIENT_SECRET>",
app_id: "<APP_ID>",
# Optional, Parameter beyond this are optional
# release time to release app on specific date
release_time: "2019-12-25T07:05:15+0000",
# For phase wise release: set these parameters
phase_wise_release: true,
phase_release_start_time: "2019-12-25T07:05:15+0000",
phase_release_end_time: "2019-12-28T07:05:15+0000",
phase_release_percent: "10.00",
phase_release_description: "<DESCRIPTION>"
)
You can also retreive app info by making use of the following action
huawei_appgallery_connect_get_app_info(
client_id: "<CLIENT_ID>",
client_secret: "<CLIENT_SECRET>",
app_id: "<APP_ID>"
)