Reputation: 1235
I have uploaded several version of iOS app in app store with Crashlytics enabled, where some old version got crashed. I am trying to get crash logs from Crashlytics(fabric) but it is showing 0 crashes, 'Missing dSYM file', and UUID of latest app version. Here i can upload only .zip file of .dSYM files which has latest UUID, but how can we get older app crash reports(logs).
Upvotes: 0
Views: 1041
Reputation: 3031
Uploading symbol files to Fabric
In xcode go to Window -> Organiser
Find the relevant build that was uploaded to AppStore and click "Download DSYMs"
Right-click build and choose "Show in finder"
Right-click the selected xcarchive file and choose "Show package contents"
Go to DSYMs folder. If you have performed step 2, there should be one file called NP.app.dSYM and some more [Unique UUID].dSYM files (if Bitcode is enabled)
Copy all DSYM files, paste in desktop and compress them into one zip
Go to https://fabric.io, Click the Settings icon (upper right corner).
Go to Apps -> [app name] -> Missing dSYMs and upload the zip
Upvotes: 1