![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
fastlane-plugin-dynatrace
Advanced tools
This project is a fastlane plugin. To get started with fastlane-plugin-dynatrace
, add it to your project by running:
fastlane add_plugin dynatrace
The Dynatrace fastlane plugin manages pre-processing and uploading of dSYM files (iOS, tvOS) or uploading of obfuscation mapping files (Android) to the Dynatrace cluster. Symbol and mapping files are used to make reported stack traces human-readable.
The plugin provides a single action dynatrace_process_symbols
. The configuration depends on whether the app is an iOS/tvOS or an Android app.
To get started, ask your Dynatrace administrator for an API token with Mobile symbolication file management permission . To generate the API token, go to Integration > Dynatrace API. The token is used by the authenticate the plugin into Dynatrace and upload the symbol and mapping files.
Add the action dynatrace_process_symbols
to your Fastfile. You'll find all the configuration options and a default configuration below. Use the parameter symbolsfile
to provide a relative path to the symbols file (dSYM or Android mapping).
dynatrace_process_symbols(
appId: "<Dynatrace application ID>",
apitoken: "<Dynatrace API Token>",
os: "<ios>, <tvos> or <android>",
bundleId: "<CFBundlebundleId (iOS, tvOS) / package (Android)>",
versionStr: "<CFBundleShortVersionString (iOS, tvOS) / versionName (Android)>",
version: "<CFBundleVersion (iOS, tvOS) / versionCode (Android)>",
server: "<Dynatrace Environment URL>",
symbolsfile: "<Symbols File Path>"
)
Now, when you run fastlane, the Dynatrace plugin will manage the symbol files of your app as configured.
Key | Description | default value |
---|---|---|
action | (iOS/tvOS only) Action to be performed by DTXDssClient (upload or decode ). | upload |
username | (iOS/tvOS only) The username/AppleID to use to download the dSYMs. Alternatively you can specify this in your AppFile as apple_id . | |
os | The type of the symbol files, either ios , tvOS or android . | |
apitoken | Dynatrace API token with mobile symbolication permissions. | |
appID | The application ID you get from your Dynatrace environment. | |
bundleId | The CFBundlebundleId (iOS, tvOS) / package (Android) of the application. Alternatively you can specify this in your AppFile as app_identifier . | |
versionStr | The CFBundleShortVersionString (iOS, tvOS) / versionName (Android) | |
version | The CFBundleVersion (iOS, tvOS) / versionCode (Android). Is also used for the dSYM download. | |
symbolsfile | Path to the dSYM or Android mapping file to be processed. (Android only): If the file exceeds 10MiB and doesn't end with *.zip it's zipped before uploading. This can be disabled by setting symbolsfileAutoZip to false. | |
symbolsfileAutoZip | (Android only) Automatically zip symbolsfile if it exceeds 10MiB and doesn't already end with *.zip . | true |
server | The API endpoint for the Dynatrace environment (e.g. https://environmentID.live.dynatrace.com or https://dynatrace-managed.com/e/environmentID ). | |
cleanBuildArtifacts | Clean build artifacts after processing. | false |
tempdir | (OPTIONAL) Custom temporary directory for the DTXDssClient. The plugin does not take care of cleaning this directory. | |
debugMode | Enable debug logging. | false |
customLLDBFrameworkPath | (OPTIONAL) Custom path to the LLDB framework used as runtime dependency by DTXDssClient (e.g. /Users/test/Documents/LLDB.framework ). | |
autoSymlinkLLDB | (OPTIONAL) Automatically find and create a symlink to the LLDB framework into the DTXDssClient's temporary folder. | true |
Try it by cloning the repo, running fastlane install_plugins
and bundle exec fastlane test
.
This plugin includes a set of RSpec unit tests, which can be executed by running bundle exec rspec spec
.
For any other issues and feedback about this plugin, please submit it to this repository or contact Dynatrace Support.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
fastlane is the easiest way to automate beta deployments and releases for your iOS, tvOS and Android apps. To learn more, check out fastlane.tools.
FAQs
Unknown package
We found that fastlane-plugin-dynatrace demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.