|
Original issue by @arunks - Imported from fastlane/gym#154 |
I am building my app right now with -
include_symbols: "true",
At the end of the process I expect the dsym to be zipped for easy upload to distribution mechanisms. But I dont see the ZIP file. Has this feature been removed? Or do I have to write a postscript?
|
@KrauseFx commented |
Running gym
generated a dSYM
file for me, it seems to be working. Could you provide more information and ideally an example app that runs into this problem?
I ran into the same problem and found a reason after some try and error. In the 'Build Settings' for your target under 'Build Options' the 'Debug Information Format' has to be 'DWARF with dSYM File' for your desired configuration. Otherwise no dSYM.zip file can be created by gym.
@FBente Awesome! Glad you found a solution 馃憤
Most helpful comment
I ran into the same problem and found a reason after some try and error. In the 'Build Settings' for your target under 'Build Options' the 'Debug Information Format' has to be 'DWARF with dSYM File' for your desired configuration. Otherwise no dSYM.zip file can be created by gym.