I've been working with the nice PLCrashReport framework to send to my server the crash reports from my user's iOS devices.
However, to symbolicate the crash report, the symbolicatecrash utility requests that along with the iPhone OS version number, I have the ipsw's alphanumeric version, in the form of:
OS Version: iPhone OS 4.0.1 (8A293)
I know that I can get the iOS's numeric version by [[UIDevice currentDevice] systemVersion]
, but how can I get the other one?
I can't find a way, and I've searched everywhere I could imagine.
See Question&Answers more detail:os