Upload dSYMs

Upload dSYM files to allow BugSnag to show human-friendly function names, file paths, and line numbers in your iOS, macOS, and tvOS stacktraces.

For installation instructions for the BugSnag CLI, please see our Installation guide.

Overview

The dsym command uploads dSYM files from your build and uploads them to the dSYM upload API. The command will attempt to locate your dSYMs if provided with an Xcode project or directory, or else a direct path can be provided.

In addition to the source maps, the command extracts version and build information, including your BugSnag API key, required for the upload from your app’s Info.plist file. These values can be overridden, or provided entirely, by command line options.

Example usage

The simplest way to run the command is from the root directory of your project:

$ bugsnag-cli upload dysm

Or by providing a specific project file

$ bugsnag-cli upload dsym path/to/my-project.xcodeproj

Or to the dSYM itself:

$ bugsnag-cli upload dsym path/to/generated/project.dSYM

If your project contains multiple schemes or has a non-standard project layout, you might need to provide extra options:

$ bugsnag-cli upload dsym \
    --plist path/to/Info.plist \
    --scheme Production

Available options

API key (--api-key)

The BugSnag API key for the application.

You can find your API key in Project Settings from your BugSnag dashboard.

Default: the value of com.bugsnag.android.API_KEY in your app’s manifest file, if found.

Dry run (--dry-run)

Performs a dry-run of the command without sending any information to BugSnag.

Fail on upload error (--fail-on-upload-error)

Stops the upload when a file fails to upload successfully.

Ignore empty dSYM (--ignore-empty-dsym)

Throw warnings instead of errors when a dSYM file is found, rather than the expected dSYM directory.

Ignore missing dwarf (--ignore-missing-dwarf)

Throw warnings instead of errors when a dSYM with missing DWARF data is found.

Log level (--log-level)

Sets the level of logging to debug, info, warn or fatal.

Default: info.

Overwrite (--overwrite)

Whether to ignore and overwrite existing uploads with same identifier, rather than failing if a matching file exists.

Plist (--plist)

The path to a .plist file from which to obtain build information.

Default: path obtained from the build settings in your app’s workspace.

Port (--port)

The port number for the BugSnag upload server.

Default: 443.

Project root (--project-root)

The path to strip from the beginning of source file names referenced in stacktraces on the BugSnag dashboard.

Default: the root directory if the command has detected one, otherwise it’s empty.

Retries (--retries)

The number of retry attempts before failing an upload request.

Default: 0.

Scheme (--scheme)

The name of the Xcode scheme used to build the application.

Timeout (--timeout)

The number of seconds to wait before failing an upload request.

Default: 300.

Upload API root URL (--upload-api-root-url)

The upload server hostname, optionally containing port number.

For use in BugSnag On-premise configurations. The command will append the appropriate path to access the correct upload endpoint.

Default: https://upload.bugsnag.com.

Verbose (--verbose)

Sets the level of the logging to its highest.

This is the equivalent of setting the log level to debug.

Version name (--version-name)

The version of the application.

Xcode project (--xcode-project)

The path to an Xcode project, workspace or containing directory from which to obtain build information.