How can I get the dSYM files for iOS?

Hey,
Currently, I am trying to get symbole files for my iOS build.
I tried to enable the “bGeneratedSYMFile” inside of the BuildConfiguration.xml but this generates only symboles for the Editor build and not for the app to upload them to HockeyApp, Crashlytics etc.

Best

[/Script/IOSRuntimeSettings.IOSRuntimeSettings]
bGenerateSYMFile=true

This does nothing.

There is an unfortunate typo in the previous answer.

You do need to add a line to your [/Script/IOSRuntimeSettings.IOSRuntimeSettings] block in DefaultEngine.ini, but that block needs to read:

bGeneratedSYMFile=true

(note the d before SYM)