Crashlytics uploading a ipa file does not upload DSYM file

1k Views Asked by At

I'm trying to upload a dSYM file to Crashlytics BETAS separately as we are currently in our build script only uploading the ipa file using Crashlytics.framework/submit. To upload a dlsym I'm trying to use Crashlytics.framework/uploadDSYM. It is constantly failing and giving me the following error.

warning: using uploadDSYM directly to upload dSYMs is not supported.     
uploadDSYM will be deprecated in a future release
Crashlytics: Failed to Detect Build Environment

BUILT_PRODUCTS_DIR value not found in environment

Since it won't work what can I use to upload my DSYM every time, without actually having to manually upload it every time.

I couldn't find any documentation on this function on how to use it and what parameters I have to use. Currently I am using the following code to try to upload my DSYM to crashlytics BETAS

Path/to/Crashltics.framework/uploadDSYM $API_KEY $BUILD_SECRET -p ios /Path/to/DSYM
1

There are 1 best solutions below

4
On

Mike from Fabric here. The submit script for uploading versions to Beta is distinct from any upload process for dSYMs. Using the upload-symbols script is a good way to automate dSYM uploads:

/Applications/Fabric.app/Contents/MacOS/upload-symbols -a <api-key> -p ios /Users/YourUserName/PathToDsymLocation