Repository is archived
No release in over 3 years
Low commit activity in last 3 years
Upload dSYM symbolication files to Flurry
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.108.0
>= 0
>= 0
>= 0

Runtime

>= 2.0.0
 Project Readme

flurry plugin

fastlane Plugin Badge

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-flurry, add it to your project by running:

fastlane add_plugin flurry

About flurry

This action allows you to upload symbolication files to Flurry.

flurry_upload_dsym(
  api_key: '...',
  auth_token: '...',
  dsym_path: './Example.app.dSYM.zip'
)

The following environment variables may be used in place of parameters: FLURRY_API_KEY, FLURRY_AUTH_TOKEN, and FLURRY_DSYM_PATH.

Example Fastfile

fastlane_version "1.108.0"
 
default_platform :ios
 
platform :ios do
 
  ENV['FLURRY_AUTH_TOKEN'] = '<Put-Token-Here>'
  ENV['FLURRY_API_KEY'] = '<Put-API-Key-Here>' # Use your own API Key Here
  
  desc "Build for non-bitcode enabled apps. Includes uploading dSYMs"
  lane :build do
    cert
    sigh
    gym(scheme: "AppName")
    flurry_upload_dsym
    clean_build_artifacts
  end
  
  desc "Upload dSYMs for bitcode enabled apps"
  lane :upload_symbols do
    download_dsyms
    flurry_upload_dsym
    clean_build_artifacts
  end
end

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting doc in the main fastlane repo.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.