iphone - Under iOS, is there a quick way to see what symbols I have for specific UUID's? -
under ios, unique identifiers, known uuid's, assigned @ compile time. on time, developer may accumulate many builds different identifiers. may useful identify uuid's have preserved symbol files associated them. there quick way identify uuid's have preserved symbols?
one option use command-line. replace yourappname real application's name.
mdfind 'com_apple_xcode_dsym_uuids = *' | grep yourappname | grep dsym | sed 's, ,\\&,g' | xargs dwarfdump --uuid
Comments
Post a Comment