build_apk
Generate APK files from decoded Apktool projects for Android reverse engineering and development. Specify project directory, output path, and build options.
Instructions
Build an APK file from a decoded APKTool project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
debug | No | ||
force_all | No | ||
output_apk | No | ||
project_dir | Yes |
Input Schema (JSON Schema)
{
"properties": {
"debug": {
"default": true,
"title": "Debug",
"type": "boolean"
},
"force_all": {
"default": false,
"title": "Force All",
"type": "boolean"
},
"output_apk": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Apk"
},
"project_dir": {
"title": "Project Dir",
"type": "string"
}
},
"required": [
"project_dir"
],
"title": "build_apkArguments",
"type": "object"
}