Exporting an App's JSON File
When an app's binary is built, the
.json
file is embedded within the binary file. To export the
.json
file from the binary file to the disk, use the following command:
./<app-binary-name> --export app
The
.json
is exported as
<app-binary-name>.json
.
Tip: To provide a different file name to the exported
.json
, use the following command:
./<app-binary-name> --export -o <new-app-binary-name>.json app