Skip to main content

Android App Post-Processor

This step performs the necessary system operations to identify and process the Android output binary files.

warning

This step also verifies whether the app is signed or not. If this step is not included in your Workflow or if it is determined that there is no signed app as a result of this step, the app cannot be distributed.

Prerequisites

The workflow steps that need to be executed before running the Android App Post-Processor workflow step, along with their respective reasons, are listed in the table below.

Prerequisite Workflow StepDescription
Git CloneThis step relies on the Android Build step and the Git Clone step is necessary for the Android Build step to run successfully.
Android BuildTo process Android output, these outputs must be obtained from the build step.
Android SignIf a signed app is created, this step needs to be run beforehand to process this output.
caution

If a step other than the Android Build or Android Sign step is used to build or sign the app, then the Android App Post-Processor step depends on this step.

Input Variables

There is no need to enter an input for this component. It will process Android files under the output directory ($AC_OUTPUT_DIR).

Output Variables

The outputs that can result from the operation of this component are listed as follows:

Variable NameDescription
$AC_ANDROID_POST_PROCESS_OUTPUT_PATHSpecifies the application post process file path. This file specifies the base name for each app and whether it is signed or not.
info

The output post-processing JSON file should adhere to the following structure:

ac_post_process_output.json
[
{
"signed": true|false,
"app_name": "app base name"
},
{...}
]
caution

To share the signed apps created as a result of this step or to view them on the Download Artifacts page, please ensure that the Export Build Artifacts step is included in your Workflow after this step.


To access the source code of this component, please use the following link:

Preview of GitHub - appcircleio/appcircle-android-build-component