1

Under iOS, unique identifiers, known as UUID's, are assigned at compile time. Over time, a developer may accumulate many builds with different identifiers. Sometimes it may be useful to quickly identify what UUID's have preserved symbol files associated with them. Is there a quick way to identify which UUID's have preserved symbols?

xyzzycoder
  • 1,831
  • 13
  • 19

1 Answers1

1

One option is to use the command-line. Replace YourAppName with your real application's name.

mdfind 'com_apple_xcode_dsym_uuids = *' | grep YourAppName | grep dSYM | sed 's, ,\\&,g' | xargs dwarfdump --uuid
xyzzycoder
  • 1,831
  • 13
  • 19