build¶
Compile/build an application. By default, targets the current platform's default output format.
This will only compile the components necessary to run the application. It won't necessarily result in the generation of an installable artefact.
Usage¶
To build the application for the default output format for the current platform:
$ briefcase build
To build the application for a different platform:
$ briefcase build <platform>
To build the application for a specific output format:
$ briefcase build <platform> <output format>
Build tool requirements
Building for some platforms depends on the build tools for the platform you're targeting being available on the platform you're using. For example, you will only be able to create iOS applications on macOS. Briefcase will check for any required tools, and will report an error if the platform you're targeting is not supported.
Options¶
The following options can be provided at the command line.
-a <app name> / --app <app name>¶
Run a specific application target in your project. This argument is only required if your project contains more than one application target. The app name specified should be the machine-readable package name for the app.
-u / --update¶
Update the application's source code before building. Equivalent to running:
$ briefcase update
$ briefcase build
-r / --update-requirements¶
Update application requirements before building. Equivalent to running:
$ briefcase update -r
$ briefcase build
--update-resources¶
Update application resources such as icons before building. Equivalent to running:
$ briefcase update --update-resources
$ briefcase build
--update-support¶
Update application support package before building. Equivalent to running:
$ briefcase update --update-resources
$ briefcase build
--update-stub¶
Update stub binary before building. Equivalent to running:
$ briefcase update --update-stub
$ briefcase build
--test¶
Build the app in test mode in the bundled app environment. Running build --test will also cause an update to ensure that the packaged application contains the current test code. To prevent this update, use the --no-update option.
If you have previously run the app in "normal" mode, you may need to pass -r / --update-requirements the first time you build in test mode to ensure that your testing requirements are present in the test app.
--no-update¶
Prevent the automated update of app code that is performed when specifying by the --test option.
--debug <debugger>¶
Install the selected debugger into the bundled app.
Briefcase provides a plugin interface that allows third-party debugger integrations. Currently the following debuggers are supported:
pdb: This is used for debugging via console (see Debug via PDB)debugpy: This is used for debugging via VS Code (see Debug via VS Code)
If calling only --debug without selecting a debugger explicitly, pdb is used as default.
This is an experimental new feature, that is currently only supported on Windows, macOS, iOS and Android.
This option may slow down the app a little bit.
If you have previously run the app in "normal" mode, you may need to pass -r / --update-requirements the first time you build in debug mode to ensure that the debugger is embedded in your bundled app.
The selected debugger in build --debug <debugger> has to match the selected debugger in run --debug <debugger>.