crashlytics
Crashlytics is not sending Crash report from iPhone
Xcode debugger does NOT allow Crashlytics to process crash reports. Yeah, that seem weird even to me when I read that first time but it is a fact (Source). That’s is the reason we never see crash report When: – running app in Simulator – running app on iDevice by directly build and run from … Read more
Crashlytics in iOS won’t proceed past “Build Your Project” in Fabric app
Go into Build settings of the your target. Find “Debug Information Format”. Set this from “DWARF” in both debug and release to “DWARF with dSYM File”
What does transitive = true in Gradle exactly do (w.r.t. crashlytics)?
You are using the @aar notation. It means that you want to download only the aar artifact, and no transitive dependencies. You can check Dependency management in Gradle in the official documentation. In particular: An artifact only notation creates a module dependency which downloads only the artifact file with the specified extension. Existing module descriptors … Read more
Crashlytics Android SDK – custom UncaughtExceptionHandler
UPDATE Please see @kmityak answer as Crashlytics/Fabric initialization is now asynchronous and my solution below is no longer valid. ORIGINAL ANSWER You can set your custom UncaughtExceptionHandler providing that it will pass exception to default UncaughtExceptionHandler to be handled later via Crashlytics. Below code is implemented inside Application subclass: private static Thread.UncaughtExceptionHandler mDefaultUEH; private static … Read more
Crashlytics: “We’re missing a dSYM to process crashes” [closed]
I ran into the same problem today. It seems that iTunes Connect is recompiling apps with bitcode so that the UUID changes, and the dSYM inside the .xcarchive can’t actually be used to symbolicate the app (this appears to be a new development). You can download the correct dSYM from iTunes Connect. Login, go to … Read more