I read that the symbols list of an IOS app are in the .dSYM. I would like to view the entire list of symbols, do you guys know what tool do I need to use to extract this information from this package?
thanks
-Malena
I read that the symbols list of an IOS app are in the .dSYM. I would like to view the entire list of symbols, do you guys know what tool do I need to use to extract this information from this package?
thanks
-Malena
You can use dwarfdump.
For example to see all public types in a dSYM-file for ARM64 architecture run:
pub
is just short forpublic
.For more information check the man-page of dwarfdump. Using this command you can also extract strings, filter by name and address and more.