Reputation: 1
I have an app that is already in the App Store and I got a crash report that is a unsymbolicated. I tried to upload the .dSYM file using the following procedure, but Parse is still showing me the unsymbolicated crash report. I am wondering if I am doing anything wrong.
Let's say the app is named MyApp
In Terminal, I upload the dSYM file using this:
parse symbols MyApp --path="/Users/EmadToukan/Library/Developer/Xcode/Archives/2015-08-15/MyApp 2015-08-15, 7.28 PM.xcarchive/dSYMs/MyApp.app.dSYM"
When I hit enter, I get the following:
Uploading iOS symbol files...
Uploaded symbol files.
When I refresh my Parse Analytics page, it still says that the crash report is unsymbolicated. Any ideas why this is happening?
Upvotes: 0
Views: 602
Reputation: 1188
I submitted this as a comment originally because I didn't think I was seeing correct results. Now I realize that I am.
So what you need to do is upload the file found in DWARF directory of your archive. This can be found at dSYM/xarchive/DWARF/app_name
, where "app_name" will actually be the file you want to upload.
Once you do this, from what I can tell from Parse's docs, previous crashes that were unsymbolicated will not be symbolicated. Instead, a new crash will be generated with symbols. It's a bit confusing because the duplicate, unsym crashes remain there afterwards. You can find this information on Parse's website here
Upvotes: 1