Latest release not appearing in Xcode Crashes Organizer Latest release not appearing in Xcode Crashes Organizer xcode xcode

Latest release not appearing in Xcode Crashes Organizer


It's likely a bug with Xcode/ITC services. I filed a radar (#27277793) yesterday and was on ITC tech support today. If you're having this issue please report it to Apple and reference the existing radar (#27277793) so Apple can recognize we're having the same problem and prioritize a fix.

A workaround to get the crash reports for my latest release was to manually add a new entry in the crash organizers Info.json.

In: $HOME/Library/Developer/Xcode/Products/<bundle.id> edit the Info.json and add a new entry to the beginning of the "productVersions" array based on the existing entries, but change the build number to whatever build the crash reports are for.

You also must update the appStoreStatus field depending on whether your app is in TestFlight or in the AppStore. appStoreStatus: 1 for TestFlight and appStoreStatus: 3 for AppStore.

After relaunching Xcode and going to the crashes organizer I watched as the last 6 days of crash reports came in.

Yay for human readable configuration data!


Had similar issue where Xcode crash reports stopped updating after we increased our deployment target iOS version. Fix was to edit Info.json like mentioned above and remove all unsupported OS versions from "supportedOSVersions" array of latest build that was appearing in "productVersions" array.


This worked for me when none of the above answers did.

Find the Info.json file as described above in mkirk's answer. Make a copy as a backup. In the productVersions section remove any unneeded versions. As you can see below, "productVersions" is a json array, and it will contain a series of json objects, each of which represents one of your versions. I desperately needed crash reports for a recent release to the app store and after deleting all versions preceding that (below it) and restarting Xcode, voila! the Organizer suddenly began showing all my crash reports.

"productVersions" : [    {      "version" : "4.0.45",      "productType" : 1,      ...