Reputation: 2193
How can i get the DSYMs for a debugged app (no released on the AppStore) ?...
I know from this answer that the debug session is not allowed to report crashes and errors to Fabric, but after i disconnect the device from xcode, my crash logs are reported and requires DSYMs, how can i get them in this case ?
also note that i am logging non fatal errors using Crashlytics.recordError(error)
and not forcing a crash.
Upvotes: 4
Views: 1160
Reputation: 16249
Mike from Fabric here. Make sure that you have Debug Information Format set to "Dwarf with dSYM" and that your run script is enabled to run on all builds to get the dSYMs uploaded.
Upvotes: 5