I recently discovered problems reading Crashlytics reports for crashes in Swift code.
In the picture below you can see what happend to the method names. I've highlighted the interesting information in it:
String+File.swift line 21 $SSo7
UIImage
C7mymodule
E4load
_5block
y10Foundation
3URL
V_yABSg_s5Error
_pSgtctFZ080$S7mymodule
23ProfileViewController
C18loadProfilePicture
yy10Foundation
3URL
VFySo7a6CSg_s5G9_pSgtcfU_AC0ijK0CSgXwz_XxTf1ncn_nTf4ndn_n
It is still usefull but harder to read and understand. Even though, sometimes it doesn't help at all.
I just wonder if there is a way to fix this.
xcrun swift-demangle
most likely is what you are looking for – Haddix